[Issue 8017] New: Shadowing declaration not detected when iterating hashes

d-bugmail at puremagic.com d-bugmail at puremagic.com
Wed May 2 16:55:36 PDT 2012


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

           Summary: Shadowing declaration not detected when iterating
                    hashes
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: accepts-invalid
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: andrej.mitrovich at gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2012-05-02 16:56:48 PDT ---
int[int] table;

void main()
{
    int foo;
    foreach (a, b; table)
    {
        string foo = "";
    }
}

No error! This happens when iterating hashes. Change the table type to an array
(e.g. int[]) and you'll see the shadowing declaration error.

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


More information about the Digitalmars-d-bugs mailing list