[Issue 6765] New: [CTFE]: AA.length doesn't compile when AA is null

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Oct 4 05:54:27 PDT 2011


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

           Summary: [CTFE]: AA.length doesn't compile when AA is null
           Product: D
           Version: D1 & D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: clugdbug at yahoo.com.au


--- Comment #0 from Don <clugdbug at yahoo.com.au> 2011-10-04 05:53:43 PDT ---
At compile time, if an AA is null, then AA.length is zero.

int main()
{
    int[int] w;
    return w.length; // OK
}

But:

static assert({
    int[int] w;
    return w.length;
}()==0);

fails with:
\..\src\druntime\import\object.di(362): Error: _aaLen cannot be interpreted at
compile time, because it has no available source code

Both D1 and D2.

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