xxxxxxxxxx
#!/usr/bin/rdmd
import std.traits;
import std.stdio;
void main() {
void foo() {
getName!({}).writeln;
}
getName!({}).writeln;
foo();
}
string getName(alias func)() {
return __traits(identifier, __traits(parent, func));
}