[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

2022-12-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=5004 Iain Buclaw changed: What|Removed |Added Priority|P2 |P4 --

[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

2018-05-18 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=5004 Dmitry Olshansky changed: What|Removed |Added CC||dmitry.o...@gmail.com --

[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

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

[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

2012-05-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5004 --- Comment #9 from bearophile_h...@eml.cc 2012-05-06 06:52:35 PDT --- One case: alias ushort UT; void main() { int x; UT y = x; } DMD 2.060alpha gives: test.d(4): Error: cannot implicitly convert expression (x) of type int to ushor

[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

2011-11-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5004 --- Comment #7 from bearophile_h...@eml.cc 2011-11-15 23:53:47 PST --- Maybe related to issue 6916 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

2011-09-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5004 --- Comment #6 from bearophile_h...@eml.cc 2011-09-18 11:14:04 PDT --- GCC too uses "aka" in error messages: #include struct S { int16_t x; }; int main(int argc, char **argv) { S s = { argc }; return 0; } ...>g++ -std=c++0x temp.cpp

[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

2011-07-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5004 --- Comment #5 from bearophile_h...@eml.cc 2011-07-18 01:42:25 PDT --- Another similar example of bad error message, DMD 2.054: enum Foo { A } void main() { auto x = Foo.B; } test.d(3): Error: no property 'B' for type 'int' -- Configure

[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

2011-02-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5004 Denis Derman changed: What|Removed |Added CC||denis.s...@gmail.com --- Comment #4 fro

[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

2010-10-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5004 --- Comment #3 from bearophile_h...@eml.cc 2010-10-26 13:36:16 PDT --- Another comment about it: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=120492 -- Configure issuemail: http://d.puremagic.com/issues

[Issue 5004] show both resolved symbols and original identifier in error messages involving aliases

2010-10-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5004 nfx...@gmail.com changed: What|Removed |Added Summary|'aka' usage in error|show both resolved symbols