Bug 14851 – [REG2.068.0-b2] Cannot assign array operation result to static array variable

Status
RESOLVED
Resolution
FIXED
Severity
regression
Priority
P1
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2015-07-31T06:29:00Z
Last change time
2015-08-05T01:30:11Z
Keywords
pull, rejects-valid
Assigned to
nobody
Creator
k.hara.pg

Comments

Comment #0 by k.hara.pg — 2015-07-31T06:29:02Z
Separate regression issue part from: https://issues.dlang.org/show_bug.cgi?id=14850 void main() { int[8] a, b, c; c = a[] | b[]; // NG from 2.068.0-b2 c = a[] ^ b[]; // NG from 2.068.0-b2 c[] = a[] | b[]; // OK c[] = a[] ^ b[]; // OK }
Comment #1 by k.hara.pg — 2015-07-31T11:45:59Z
Comment #2 by k.hara.pg — 2015-07-31T11:47:00Z
Comment #3 by github-bugzilla — 2015-07-31T20:21:23Z
Commits pushed to stable at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/2029e52306b722fb16a29176adc73b213fa16ad7 fix Issue 14851 - Cannot assign array operation result to static array variable https://github.com/D-Programming-Language/dmd/commit/3cf04c7431a4a6f08acaf8acdf70f89302240a5a Merge pull request #4852 from 9rnsr/fix14851 [REG2.068.0-b2] Issue 14851 - Cannot assign array operation result to static array variable
Comment #4 by github-bugzilla — 2015-08-05T01:30:11Z
Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/2029e52306b722fb16a29176adc73b213fa16ad7 fix Issue 14851 - Cannot assign array operation result to static array variable https://github.com/D-Programming-Language/dmd/commit/3cf04c7431a4a6f08acaf8acdf70f89302240a5a Merge pull request #4852 from 9rnsr/fix14851