xxxxxxxxxx
import std;
void test(alias a)()
{
writeln(a.stringof);
writeln(__traits(identifier, a));
}
void main()
int x = 100;
test!x;