[Issue 6744] Missing AA symbol with enum

2015-09-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6744 Kenji Hara changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 6744] Missing AA symbol with enum

2013-02-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6744 --- Comment #9 from Kenji Hara 2013-02-17 05:44:04 PST --- (In reply to comment #8) > Now, the case in comment #0 is a dup of bug 8997, but more general case in > comment #1 isn't. s/comment #1/comment #2/ -- Configure issuemail: http://d.pu

[Issue 6744] Missing AA symbol with enum

2013-02-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6744 --- Comment #8 from Kenji Hara 2013-02-17 05:37:30 PST --- (In reply to comment #0) > test.d > import traits; > void formatValue()() { string[char] aa; aa.length; } > void main() { formatValue(); } > > traits.d > enum LOOKUP_LINKAGE

[Issue 6744] Missing AA symbol with enum

2012-07-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6744 Shahid changed: What|Removed |Added CC||govell...@gmail.com --- Comment #7 from Shahi

[Issue 6744] Missing AA symbol with enum

2011-10-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6744 --- Comment #6 from Jonathan M Davis 2011-10-23 17:03:03 PDT --- Well, I'm definitely confused. I finally managed to reduce my code to a reasonably test case, but I can't find a version of the compiler where it worked. So, I don't know what ha

[Issue 6744] Missing AA symbol with enum

2011-10-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6744 Brad Roberts changed: What|Removed |Added Severity|regression |critical --- Comment #5 from Brad Rober

[Issue 6744] Missing AA symbol with enum

2011-10-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6744 --- Comment #4 from Jonathan M Davis 2011-10-23 14:49:08 PDT --- I have code with a similar error which compiled with 2.054 (or at least between the release of 2.054 and 2.055 - it compiled before, but it won't compile with 2.054 because it re

[Issue 6744] Missing AA symbol with enum

2011-10-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6744 Brad Roberts changed: What|Removed |Added CC||bra...@puremagic.com --- Comment #3 fro

[Issue 6744] Missing AA symbol with enum

2011-09-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6744 --- Comment #2 from Kenji Hara 2011-09-30 07:25:02 PDT --- This is not only the problem of AA, it is where template instantiation is belongs to. test.d import traits; void func()(){ X!() x; auto n = x.length; } void main(){ func(); assert

[Issue 6744] Missing AA symbol with enum

2011-09-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6744 Jonathan M Davis changed: What|Removed |Added CC||jmdavisp...@gmx.com Platfo