1 // RUNNABLE_PHOBOS_TEST
2 // https://issues.dlang.org/show_bug.cgi?id=5305
3 
4 import std.math;
map(real function (real)f)5 void map(real function(real) f) { }
main()6 int main() { map(&sqrt); return 0; }
7 
8 
9