Comment #0 by thelastmammoth — 2013-10-30T11:31:12Z
(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
}