summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/runnable/test5305.d
blob: e1c274d31ca64d1daa19c83322b99683e1929d41 (plain)
1
2
3
4
5
6
7
// https://issues.dlang.org/show_bug.cgi?id=5305

import std.math;
void map(real function(real) f) { }
int main() { map(&sqrt); return 0; }