digitalmars.D.bugs - [Issue 8151] New: [ICE] Two internal errors with recursive map
- d-bugmail puremagic.com (35/35) May 25 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8151
- d-bugmail puremagic.com (10/10) Oct 27 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8151
- d-bugmail puremagic.com (11/11) Oct 27 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8151
http://d.puremagic.com/issues/show_bug.cgi?id=8151 Summary: [ICE] Two internal errors with recursive map Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: bearophile_hugs eml.cc --- Comment #0 from bearophile_hugs eml.cc 2012-05-25 15:31:41 PDT --- import std.algorithm: map; void main() { int foo(int) { return [1].map!foo().front; } } DMD 2.060head gives: map(Range) if (isInputRange!(Unqual!(Range)))([1]).front Internal error: e2ir.c 705 -------------------------- A probably related problem: import std.algorithm: map, reduce; void main() { int foo(int) { return true ? 1 : [1].map!foo().reduce!q{a}(); } } DMD 2.060head gives: Internal error: e2ir.c 3519 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
May 25 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8151 hsteoh quickfur.ath.cx changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hsteoh quickfur.ath.cx --- Comment #1 from hsteoh quickfur.ath.cx 2012-10-27 12:00:14 PDT --- Works on git HEAD, Linux 64-bit. Fixed, or Windows-specific problem? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 27 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8151 bearophile_hugs eml.cc changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from bearophile_hugs eml.cc 2012-10-27 17:41:29 PDT --- Both programs now compile. Closed. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 27 2012