xxxxxxxxxx
import std.stdio: writeln;
void f(int) { writeln("int"); }
void f(string) { writeln("string"); }
void main()
{
auto p = &f;
//auto p = cast(void function(int)) &f;
p(42);
}