https://issues.dlang.org/show_bug.cgi?id=23626
Iain Buclaw <ibuc...@gdcproject.org> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://issues.dlang.org/sh | |ow_bug.cgi?id=22186 --- Comment #3 from Iain Buclaw <ibuc...@gdcproject.org> --- FYI, `import std.traits;` can be replaced with --- template fullyQualifiedName(T...) { enum fullyQualifiedName = !T[0]; } --- To remove all phobos dependencies. --