[Issue 4051] New: [CTFE] array struct member item update

d-bugmail at puremagic.com d-bugmail at puremagic.com
Fri Apr 2 14:48:32 PDT 2010


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

           Summary: [CTFE] array struct member item update
           Product: D
           Version: future
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Keywords: rejects-valid
          Severity: enhancement
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: bearophile_hugs at eml.cc


--- Comment #0 from bearophile_hugs at eml.cc 2010-04-02 14:48:31 PDT ---
(Not tested with the latest bug fixes, so this can be already fixed)


struct Foo {
    int[1] a;
}
int bar() {
    Foo f;
    f.a[0] = 1;
    return 0;
}
enum int _ = bar();
void main() {}


dmd 2.042 gives:

test.d(6): Error: Index assignment (f.a[0u]) = 1 is not yet supported in CTFE

-- 
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