https://issues.dlang.org/show_bug.cgi?id=2159
--- Comment #13 from RazvanN <[email protected]> --- (In reply to anonymous4 from comment #11) > Self-contained test case: > --- > void f(int); > void f(int function()); > int g(); > void h() > { > f(g); > f(&g); > } > --- I don't get it. This code compiles just fine, as it should. f(g) call s f(int) and f(&g) calls f(int function()). This seems reasonable to me. --
