http://d.puremagic.com/issues/show_bug.cgi?id=3501
Summary: "is null" comparison should be disallowed for
fixed-size arrays
Product: D
Version: 2.036
Platform: Other
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Max Samukha <[email protected]> 2009-11-13 08:38:09
PST ---
At least 'a is null' in the following example should not compile:
void main()
{
int[3] a = null;
a = null;
if (a is null){}
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------