December 28, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=5384

           Summary: Rows foreach on alias-this matrix
           Product: D
           Version: D2
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: bearophile_hugs@eml.cc


--- Comment #0 from bearophile_hugs@eml.cc 2010-12-28 02:20:57 PST ---
This deprecated D2 code works with DMD 2.051:


typedef int[1][1] Mat;
void main() {
    Mat m;
    foreach (row; m) {}
}


But this alternative:


struct Mat {
    int[1][1] a;
    alias a this;
}
void main() {
    Mat m;
    foreach (row; m) {} // line 7
}


DMD 2.051 prints:

test.d(7): Error: cannot infer type for row

This is something that I'd like to see work, so structs+alias this are better usable as an alternative of typedef.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 31, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=5384


Kenji Hara <k.hara.pg@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


--- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2012-05-30 21:40:03 PDT ---
Works in 2.060head.

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