http://d.puremagic.com/issues/show_bug.cgi?id=5965
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Walter Bright <[email protected]> 2011-05-11 13:28:18 PDT --- Reduced test case: template mapx(fun...) if (fun.length >= 1) { int mapx(Range)(Range r) { return 1; } } void test() { int foo(int i) { return i; } int[] arr; auto x = mapx!( function(int a){return foo(a);} )(arr); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
