[Issue 8499] ICE on undefined identifier

2014-06-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8499 --- Comment #3 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/7a7233310619f3d3daebf4305b42f7aeb6e613af fix Issue 8499 - ICE

[Issue 8499] ICE on undefined identifier

2014-06-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8499 github-bugzi...@puremagic.com changed: What|Removed |Added Resolution|WORKSFORME |FIXED --

[Issue 8499] ICE on undefined identifier

2013-11-24 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=8499 yebblies yebbl...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 8499] ICE on undefined identifier

2012-08-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8499 --- Comment #1 from Kenji Hara k.hara...@gmail.com 2012-08-04 11:51:56 PDT --- Reduced test case: struct Variant { @property T get(T)() { struct X {} // necessary } } void main() { (Variant()).get!(typeof(() = i)); }