http://d.puremagic.com/issues/show_bug.cgi?id=8917
Summary: Array operation a[] + a[] not implemented
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: regression
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Nils <[email protected]> 2012-10-30 09:22:28 PDT
---
---
cat > test.d <<CODE
void main() {
int[3] a;
int[3] b = a[] + a[];
}
CODE
dmd test.d
---
test.d(3): Error: Array operation a[] + a[] not implemented
---
Works with 2.060. Fails since this commit:
https://github.com/D-Programming-Language/dmd/commit/da8e2a038105ad0149a8f66fbcfe31079ce3a534
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------