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: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Don <[email protected]> 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: -------