October 30, 2013 [Issue 11385] New: XXX is a nested function and cannot be accessed from XXX | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=11385 Summary: XXX is a nested function and cannot be accessed from XXX Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: major Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: thelastmammoth@gmail.com --- Comment #0 from thelastmammoth@gmail.com 2013-10-30 11:31:12 PDT --- (also tried on dmd_064 beta 4) auto fun1(T)(T a){ return a*2; } void main(){ auto fun2(T)(T a){ return a*2; } import std.algorithm; [1].map!(a=>fun1(a));//OK [1].map!(a=>fun2(a));//NG:XXX is a nested function and cannot be accessed from XXX } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
November 02, 2013 [Issue 11385] XXX is a nested function and cannot be accessed from XXX | ||||
---|---|---|---|---|
| ||||
Posted in reply to thelastmammoth@gmail.com | http://d.puremagic.com/issues/show_bug.cgi?id=11385 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull, rejects-valid --- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2013-11-02 03:59:39 PDT --- https://github.com/D-Programming-Language/dmd/pull/2705 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation