http://d.puremagic.com/issues/show_bug.cgi?id=5064
--- Comment #3 from Don <clugd...@yahoo.com.au> 2010-11-08 00:05:17 PST --- Reduced test case. Possibly related to bug 1350. struct Map(alias fun) { dchar xxx; this(int[] input) { fun(input[0]); } } void main() { auto dg = ( int c ){ return cast(dchar)'x'; }; Map!( ( c ){ return dg( c ); } )( [ 1 ] ); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------