xxxxxxxxxx
import std.stdio;
auto foo(uint x)
{
writeln(x);
}
void main()
auto f = &foo;
f(1);
f(3);