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

           Summary: A forward reference error with static arrays
           Product: D
           Version: D2
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: bearophile_h...@eml.cc


--- Comment #0 from bearophile_h...@eml.cc 2012-09-02 12:16:00 PDT ---
This compiles with no errors:


struct Tuple(T) {
    T arg;
}
struct Foo {
    Bar b;
}
struct Bar {
    int x;
    Tuple!(Foo) spam() {
        return Tuple!(Foo)();
    }
}
void main() {}




While this gives a forward reference error:

struct Tuple(T) {
    T arg;
}
struct Foo {
    Bar b;
}
struct Bar {
    int x;
    Tuple!(Foo[1]) spam() {
        return Tuple!(Foo[1])();
    }
}
void main() {}


DMD 2.061alpha:

test.d(4): Error: struct test.Foo no size yet for forward reference
test.d(4): Error: struct test.Foo no size yet for forward reference
test.d(9): Error: template instance test.Tuple!(Foo[1u]) error instantiating

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

Reply via email to