Thread overview | ||||||
---|---|---|---|---|---|---|
|
September 02, 2013 [Issue 10946] New: Integer constant expression expected instead of... | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=10946 Summary: Integer constant expression expected instead of... Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: regression Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: rtcvb32@yahoo.com --- Comment #0 from Era Scarecrow <rtcvb32@yahoo.com> 2013-09-01 18:48:57 PDT --- Known immutable named expression/variable not being accepted when it should be. Version: DMD32 D Compiler v2.063.2 enum len = 4; alias e1 = immutable(char)[len]; alias e2 = immutable(char[len]); //fails, line 9 alias immutable(char)[len] e3; alias immutable(char[len]) e4; //fails, line 11 immutable ilen = 4; alias i1 = immutable(char)[ilen]; alias i2 = immutable(char[ilen]); //fails, line 15 alias immutable(char)[ilen] i3; alias immutable(char[ilen]) i4; //fails, line 17 test.d(9): Error: Integer constant expression expected instead of len test.d(11): Error: Integer constant expression expected instead of len test.d(15): Error: Integer constant expression expected instead of ilen test.d(17): Error: Integer constant expression expected instead of ilen -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
September 02, 2013 [Issue 10946] Integer constant expression expected instead of... | ||||
---|---|---|---|---|
| ||||
Posted in reply to Era Scarecrow | http://d.puremagic.com/issues/show_bug.cgi?id=10946 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull, rejects-valid --- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2013-09-01 19:59:54 PDT --- That's a regression from 2.061, caused by the commit: https://github.com/D-Programming-Language/dmd/commit/8c5610c3f1f3cdd5d263997230352e9991ce82a7 Compiler fix: https://github.com/D-Programming-Language/dmd/pull/2512 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
September 02, 2013 [Issue 10946] Integer constant expression expected instead of... | ||||
---|---|---|---|---|
| ||||
Posted in reply to Era Scarecrow | http://d.puremagic.com/issues/show_bug.cgi?id=10946 --- Comment #2 from github-bugzilla@puremagic.com 2013-09-01 23:42:02 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/2a6e30fb5366310965abbc05e311849611cfcc70 [REG2.061] Issue 10946 - Integer constant expression expected instead of... https://github.com/D-Programming-Language/dmd/commit/8755c697f44933db35d98dd9b49dbc48a413c066 Merge pull request #2512 from 9rnsr/fix10946 [REG2.061] Issue 10946 - Integer constant expression expected instead of... -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
September 02, 2013 [Issue 10946] Integer constant expression expected instead of... | ||||
---|---|---|---|---|
| ||||
Posted in reply to Era Scarecrow | http://d.puremagic.com/issues/show_bug.cgi?id=10946 Walter Bright <bugzilla@digitalmars.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |bugzilla@digitalmars.com Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation