http://d.puremagic.com/issues/show_bug.cgi?id=3817
Summary: Array op: wrong error message
Product: D
Version: 2.040
Platform: x86
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: druntime
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from [email protected] 2010-02-18 10:14:46 PST ---
void main() {
int[] a1 = [1];
int[] a2 = [2];
int[] a3;
a3 = a1 + a2;
}
Gives wrong error message:
test.d(5): Error: Array operation a1 + a2 not implemented
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------