[Issue 8893] [ICE][CTFE] (interpret.c, line 3598) with failed array access

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8893 Andrei Alexandrescu and...@erdani.com changed: What|Removed |Added Version|D1 D2 |D2 --

[Issue 8893] [ICE][CTFE] (interpret.c, line 3598) with failed array access

2013-04-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8893 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added CC|

[Issue 8893] [ICE][CTFE] (interpret.c, line 3598) with failed array access

2013-04-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8893 --- Comment #7 from github-bugzi...@puremagic.com 2013-04-19 00:05:52 PDT --- Commit pushed to dmd-1.x at https://github.com/D-Programming-Language/dmd

[Issue 8893] [ICE][CTFE] (interpret.c, line 3598) with failed array access

2012-10-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8893 yebblies yebbl...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 8893] [ICE][CTFE] (interpret.c, line 3598) with failed array access

2012-10-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8893 yebblies yebbl...@gmail.com changed: What|Removed |Added Keywords||CTFE, ice, pull

[Issue 8893] [ICE][CTFE] (interpret.c, line 3598) with failed array access

2012-10-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8893 --- Comment #2 from github-bugzi...@puremagic.com 2012-10-30 01:26:29 PDT --- Commit pushed to master at https://github.com/D-Programming-Language/dmd

[Issue 8893] [ICE][CTFE] (interpret.c, line 3598) with failed array access

2012-10-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8893 --- Comment #4 from bearophile_h...@eml.cc 2012-10-30 06:01:42 PDT --- struct Foo { char[3] data; } int bar(Foo f) { return f.data[0]; } void main() { enum f = Foo(['A', 'B']); enum int b = bar(f); } The error message seems

[Issue 8893] [ICE][CTFE] (interpret.c, line 3598) with failed array access

2012-10-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8893 --- Comment #5 from bearophile_h...@eml.cc 2012-10-30 10:58:55 PDT --- (In reply to comment #4) The error message seems not correct: Moved to Issue 8918 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ---