digitalmars.D.bugs - [Issue 11256] New: Error mixing struct with disabled default construction and templated with lambda struct
- d-bugmail puremagic.com (54/54) Oct 14 2013 http://d.puremagic.com/issues/show_bug.cgi?id=11256
- d-bugmail puremagic.com (10/10) Oct 14 2013 http://d.puremagic.com/issues/show_bug.cgi?id=11256
- d-bugmail puremagic.com (17/17) Oct 14 2013 http://d.puremagic.com/issues/show_bug.cgi?id=11256
- d-bugmail puremagic.com (10/10) Oct 14 2013 http://d.puremagic.com/issues/show_bug.cgi?id=11256
- d-bugmail puremagic.com (10/10) Oct 14 2013 http://d.puremagic.com/issues/show_bug.cgi?id=11256
http://d.puremagic.com/issues/show_bug.cgi?id=11256 Summary: Error mixing struct with disabled default construction and templated with lambda struct Product: D Version: D2 Platform: All OS/Version: All Status: NEW Keywords: ice, rejects-valid Severity: regression Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: verylonglogin.reg gmail.com 14:25:57 MSD --- --- struct S { disable this(); } struct Z(Ranges...) { Ranges ranges; // line 6 this(Ranges rs) { ranges = rs; } } struct F(alias pred) { this(int[] = null) { } } Z!Ranges z(Ranges...)(Ranges ranges) { return Z!Ranges(ranges); } // line 16 void main() { z(S.init, F!(gv => true)()); // line 20 } --- Output: --- main.d(16): Error: field Z!(S, F!((gv) => true))._ranges_field_0 must be initialized because it has no default constructor main.d(20): Error: template instance main.z!(S, F!((gv) => true)) error instantiating --- Output if line 6 is `Ranges ranges = Ranges.init;`: --- Internal error: e2ir.c 5321 --- Output if line 6 is `Ranges ranges = void;`: --- Assertion failure: 'v->type->ty == Tsarray && vsz == 0' on line 470 in file 'todt.c' --- This causes e.g. error on `zip` over non-default constructable range and filter result. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 14 2013
http://d.puremagic.com/issues/show_bug.cgi?id=11256 Kenji Hara <k.hara.pg gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull https://github.com/D-Programming-Language/dmd/pull/2666 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 14 2013
http://d.puremagic.com/issues/show_bug.cgi?id=11256 Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/fbfb7ca42e02243f6517dc17925fd99af60cbd32 fix Issue 11256 - Error mixing struct with disabled default construction and templated with lambda struct https://github.com/D-Programming-Language/dmd/commit/02c41d3131d56f5073d1c5017a8ee0362ef7588a Fix ICE case 1 in issue 11256 https://github.com/D-Programming-Language/dmd/commit/3a7b56d0e6fe8d8ff4c44c0c143b4556e4069067 Fix ICE case 2 in issue 11256 https://github.com/D-Programming-Language/dmd/commit/4a2fabf1d4b9fbeda49187ecce5ebaeba79dc5a4 [REG2.063] Issue 11256 - Error mixing struct with disabled default construction and templated with lambda struct -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 14 2013
http://d.puremagic.com/issues/show_bug.cgi?id=11256 Commit pushed to 2.064 at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/bafe0cbda4d6da9efae971b6496791e07ceb5215 [REG2.063] Issue 11256 - Error mixing struct with disabled default construction and templated with lambda struct -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 14 2013
http://d.puremagic.com/issues/show_bug.cgi?id=11256 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: -------
Oct 14 2013