[Issue 4302] Regression(2.046, 1.061): compiler errors using startsWith in CTFE

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

[Issue 4302] Regression(2.046, 1.061): compiler errors using startsWith in CTFE

2011-09-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4302 klickverbot changed: What|Removed |Added CC||c...@klickverbot.at --- Comment #9 from

[Issue 4302] Regression(2.046, 1.061): compiler errors using startsWith in CTFE

2010-08-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4302 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 4302] Regression(2.046, 1.061): compiler errors using startsWith in CTFE

2010-08-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4302 --- Comment #7 from Rainer Schuetze 2010-08-22 13:56:02 PDT --- It seems to me that the module member list is not searched when looking for existing template instantations, but templdecl->instances. The failed template instance is currently re

[Issue 4302] Regression(2.046, 1.061): compiler errors using startsWith in CTFE

2010-08-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4302 --- Comment #6 from Don 2010-08-22 12:53:11 PDT --- (In reply to comment #5) > Or maybe even simpler: it's probably not necessary to add the template as a > member to the module if it is instantiated in a "static if" or similar. I think you're

[Issue 4302] Regression(2.046, 1.061): compiler errors using startsWith in CTFE

2010-08-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4302 --- Comment #5 from Rainer Schuetze 2010-08-21 01:20:14 PDT --- Or maybe even simpler: it's probably not necessary to add the template as a member to the module if it is instantiated in a "static if" or similar. -- Configure issuemail: http:

[Issue 4302] Regression(2.046, 1.061): compiler errors using startsWith in CTFE

2010-08-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4302 --- Comment #4 from Rainer Schuetze 2010-08-21 00:49:23 PDT --- (In reply to comment #3) > The cause of the regression was this line at the end of > TemplateInstance::semantic() > around line 3980: > > if (global.gag) > { //

[Issue 4302] Regression(2.046, 1.061): compiler errors using startsWith in CTFE

2010-08-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4302 Don changed: What|Removed |Added Keywords||patch --- Comment #3 from Don 2010-08-20 22:30:

[Issue 4302] Regression(2.046, 1.061): compiler errors using startsWith in CTFE

2010-08-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4302 Don changed: What|Removed |Added Version|D2 |D1 & D2 Summary|Regression(2.046): com