http://d.puremagic.com/issues/show_bug.cgi?id=4395

           Summary: Nested map fails
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nob...@puremagic.com
        ReportedBy: simen.kja...@gmail.com


--- Comment #0 from Simen Kjaeraas <simen.kja...@gmail.com> 2010-06-27 05:09:13 
PDT ---
auto fn1 = ( string s ) {
        return s;
    };
auto fn2 = ( string s ) {
        return map!fn1( [""] );
    };
auto idirs = map!fn2( [""] );

The above code fails with the following error message:

foo.d(114): Error: struct foo.main.Map!(fn2,string[]).Map inner struct Map
cannot be a field
foo.d(114): Error: struct foo.main.Map!(fn2,string[]).Map inner struct Map
cannot be a field

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to