[Issue 8894] 2.059: Lookup error message has become uninformative

2012-12-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8894 --- Comment #7 from Walter Bright bugzi...@digitalmars.com 2012-12-10 04:20:12 PST --- https://github.com/D-Programming-Language/dmd/pull/1361 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are

[Issue 8894] 2.059: Lookup error message has become uninformative

2012-12-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8894 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added CC|

[Issue 8894] 2.059: Lookup error message has become uninformative

2012-12-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8894 --- Comment #9 from github-bugzi...@puremagic.com 2012-12-10 18:08:28 PST --- Commits pushed to master at https://github.com/D-Programming-Language/dmd

[Issue 8894] 2.059: Lookup error message has become uninformative

2012-12-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8894 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 8894] 2.059: Lookup error message has become uninformative

2012-11-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8894 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added CC|

[Issue 8894] 2.059: Lookup error message has become uninformative

2012-11-09 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8894 --- Comment #5 from Don clugd...@yahoo.com.au 2012-11-09 03:08:43 PST --- Easy way would be, if errors aren't gagged (so that we care about which error message occurs), to gag the UFCS attempt, and if it fails, make the property call again. --

[Issue 8894] 2.059: Lookup error message has become uninformative

2012-10-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8894 --- Comment #4 from Andrej Mitrovic andrej.mitrov...@gmail.com 2012-10-26 12:39:14 PDT --- (In reply to comment #3) I've been thinking.. maybe we could change the verrorPrint function to print to a buffer by default, and then print that to

[Issue 8894] 2.059: Lookup error message has become uninformative

2012-10-25 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8894 --- Comment #1 from Andrej Mitrovic andrej.mitrov...@gmail.com 2012-10-25 16:17:19 PDT --- (In reply to comment #0) module test; struct Foo { } void main() { Foo f; auto x = f.x; } 2.058: $ dmd test.d test.d(6): Error: no

[Issue 8894] 2.059: Lookup error message has become uninformative

2012-10-25 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8894 --- Comment #2 from Andrej Mitrovic andrej.mitrov...@gmail.com 2012-10-25 16:24:25 PDT --- (In reply to comment #1) It seems errors are gagged at this point in Expression *Type::getProperty(Loc loc, Identifier *ident) in file mtype.c: The