https://d.puremagic.com/issues/show_bug.cgi?id=11297
--- Comment #1 from Walter Bright <[email protected]> 2013-11-11 10:51:59 PST --- A reduced example: ------------- void xmap(alias g)(int t) { g(t); } enum foo = function (int x) { // int bar(int y) { return x; } xmap!bar(7); // works xmap!(y => x)(7); // fails }; void xreduce(alias f)() { f(4); } -------------- -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
