[Issue 7815] Mixin template forward reference (?) regression

2015-06-17 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=7815 --- Comment #19 from github-bugzi...@puremagic.com --- Commit pushed to stable at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/d0c854a1722c286777c5e48e0780e5318a986f49 Move issue 7815 case to fail_

[Issue 7815] Mixin template forward reference (?) regression

2015-05-13 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=7815 --- Comment #18 from github-bugzi...@puremagic.com --- Commit pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/d0c854a1722c286777c5e48e0780e5318a986f49 Move issue 7815 case to fail_

[Issue 7815] Mixin template forward reference (?) regression

2012-04-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 Walter Bright changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Issue 7815] Mixin template forward reference (?) regression

2012-04-11 Thread d-bugmail
/f793ed4e3dd7b85c9a0cc703252146f0e7611dbc better error message for Issue 7815 - Mixin template forward reference (?) regression -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 7815] Mixin template forward reference (?) regression

2012-04-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 --- Comment #16 from Walter Bright 2012-04-11 10:49:07 PDT --- Ok, here's the problem. Attempt to compile BasicVector. Expand Expression!(1)(). Expand closureOf!() which is needed to initialize lhsClosure. 1. closureOf has two members 1. th

[Issue 7815] Mixin template forward reference (?) regression

2012-04-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 --- Comment #15 from Walter Bright 2012-04-11 10:40:51 PDT --- I reduced the test case a little more: struct Expression(int op) { enum lhsClosure = closureOf!(); } template closureOf() { static if (is(typeof({ BasicVector x; x.ba

[Issue 7815] Mixin template forward reference (?) regression

2012-04-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 --- Comment #14 from klickverbot 2012-04-10 22:38:19 PDT --- Drastically reduced test case: ——— struct Expression(string op_, Lhs) { enum lhsClosure = closureOf!Lhs; } template closureOf(T) { static if (is(typeof({ T x; x + x;

[Issue 7815] Mixin template forward reference (?) regression

2012-04-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 Walter Bright changed: What|Removed |Added Attachment #1085|0 |1 is obsolete|

[Issue 7815] Mixin template forward reference (?) regression

2012-04-09 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 --- Comment #12 from David Simcha 2012-04-09 07:31:57 PDT --- Created an attachment (id=1086) DMD 2.059 Beta 4 testcase Here's a new test case that works around a change in Phobos that apparently occurred between betas. This reproduces the f

[Issue 7815] Mixin template forward reference (?) regression

2012-04-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 --- Comment #11 from klickverbot 2012-04-08 15:13:41 PDT --- Issue 7862 might be related to what I'm seeing. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 7815] Mixin template forward reference (?) regression

2012-04-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 --- Comment #10 from David Simcha 2012-04-08 11:55:35 PDT --- Created an attachment (id=1085) A not-very-reduced test case. I'll try harder to reduce this later if necessary, but I don't have time right now and every time someone reduces this

[Issue 7815] Mixin template forward reference (?) regression

2012-04-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 --- Comment #9 from klickverbot 2012-04-08 10:10:43 PDT --- The original code I reduced the test case from still doesn't work either, will report a new bug once I managed to reduce it again. -- Configure issuemail: http://d.puremagic.com/iss

[Issue 7815] Mixin template forward reference (?) regression

2012-04-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 David Simcha changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED

[Issue 7815] Mixin template forward reference (?) regression

2012-04-07 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 --- Comment #6 from Walter Bright 2012-04-07 18:19:31 PDT --- Reduced test case: --- enum Closure { Matrix } struct BasicMatrix { mixin Operand!( Closure.Matrix ); } template Operand( Closure closure_ ) { alia

[Issue 7815] Mixin template forward reference (?) regression

2012-04-07 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 Walter Bright changed: What|Removed |Added Severity|regression |normal --- Comment #5 from Walter Brig

[Issue 7815] Mixin template forward reference (?) regression

2012-04-07 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 --- Comment #4 from Walter Bright 2012-04-07 18:06:42 PDT --- Please, the original two bugs were fixed and are fixed. A new bug should entered for new bugs, not reopening fixed ones. For next time. -- Configure issuemail: http://d.puremagic.

[Issue 7815] Mixin template forward reference (?) regression

2012-04-07 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 David Simcha changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED

[Issue 7815] Mixin template forward reference (?) regression

2012-04-07 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 David Simcha changed: What|Removed |Added CC||dsim...@yahoo.com --- Comment #2 from D

[Issue 7815] Mixin template forward reference (?) regression

2012-04-05 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7815 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 7815] Mixin template forward reference (?) regression

2012-04-05 Thread d-bugmail
/7a81d73021c456fd546cb241f40420717d2ec365 fix Issue 7815 - Mixin template forward reference (?) regression -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---