xxxxxxxxxx
void example(string s)()
{
import std.stdio;
writeln("called with: ", s);
}
enum E : string { x = "hello" }
void main()
example!(E.x);
example!"goodbye";