digitalmars.D.bugs - [Issue 5839] New: No error line number with "did you mean" of private symbol
- d-bugmail puremagic.com (28/28) Apr 12 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5839
- d-bugmail puremagic.com (17/17) Apr 21 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5839
- d-bugmail puremagic.com (10/10) May 08 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5839
- d-bugmail puremagic.com (13/13) Jan 20 2012 http://d.puremagic.com/issues/show_bug.cgi?id=5839
- d-bugmail puremagic.com (10/10) Dec 22 2012 http://d.puremagic.com/issues/show_bug.cgi?id=5839
- d-bugmail puremagic.com (13/16) Dec 22 2012 http://d.puremagic.com/issues/show_bug.cgi?id=5839
- d-bugmail puremagic.com (6/6) Dec 22 2012 http://d.puremagic.com/issues/show_bug.cgi?id=5839
- d-bugmail puremagic.com (14/21) Dec 22 2012 http://d.puremagic.com/issues/show_bug.cgi?id=5839
- d-bugmail puremagic.com (13/13) Feb 15 2013 http://d.puremagic.com/issues/show_bug.cgi?id=5839
- d-bugmail puremagic.com (10/10) Aug 04 2013 http://d.puremagic.com/issues/show_bug.cgi?id=5839
http://d.puremagic.com/issues/show_bug.cgi?id=5839 Summary: No error line number with "did you mean" of private symbol Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: diagnostic Severity: critical Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: bearophile_hugs eml.cc D2 program: import std.random; void main() { int[int] aa; aa[seep] ~= 0; } DMD 2.052 shows an error without line number: test.d: Error: module test std.random.seed is private test.d(4): Error: undefined identifier seep, did you mean variable seed? Marked as critical because Don asked me to do this in a comment of bug 5745 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 12 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5839 Stewart Gordon <smjg iname.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |smjg iname.com Summary|No error line number with |Spellchecker matches |"did you mean" of private |private symbols outside of |symbol |the module, leading to | |extra, broken error | |messages That error message shouldn't be there at all. The only output it should give is test.d(4): Error: undefined identifier seep -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 21 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5839 kennytm gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrej.mitrovich gmail.com *** Issue 5961 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
May 08 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5839 Walter Bright <bugzilla digitalmars.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |bugzilla digitalmars.com Resolution| |WORKSFORME 20:47:55 PST --- Now it gives: foo.d(4): Error: undefined identifier seep -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 20 2012
http://d.puremagic.com/issues/show_bug.cgi?id=5839 Andrej Mitrovic <andrej.mitrovich gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dmitry.olsh gmail.com 12:28:31 PST --- *** Issue 9196 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Dec 22 2012
http://d.puremagic.com/issues/show_bug.cgi?id=5839 Andrej Mitrovic <andrej.mitrovich gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|WORKSFORME | 12:30:37 PST ---Now it gives: foo.d(4): Error: undefined identifier seepThis still hasn't fixed the root issue, the problem is in the spellchecker and the OP sample is just one of many examples which triggers the problem. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Dec 22 2012
http://d.puremagic.com/issues/show_bug.cgi?id=5839 12:32:02 PST --- *** Issue 9196 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Dec 22 2012
http://d.puremagic.com/issues/show_bug.cgi?id=5839 12:32:53 PST ---Sample in git-head from http://d.puremagic.com/issues/show_bug.cgi?id=9196: import std.typetuple; void fn() { genericReplace(0, 0, 3); } There are many many more examples, and there are probably other dupe reports opened on issues like this. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------Now it gives: foo.d(4): Error: undefined identifier seepThis still hasn't fixed the root issue, the problem is in the spellchecker and the OP sample is just one of many examples which triggers the problem.
Dec 22 2012
http://d.puremagic.com/issues/show_bug.cgi?id=5839 Andrej Mitrovic <andrej.mitrovich gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull Platform|x86 |All AssignedTo|nobody puremagic.com |andrej.mitrovich gmail.com OS/Version|Windows |All 18:17:35 PST --- https://github.com/D-Programming-Language/dmd/pull/1663 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Feb 15 2013
http://d.puremagic.com/issues/show_bug.cgi?id=5839 yebblies <yebblies gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |thelastmammoth gmail.com *** Issue 10140 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Aug 04 2013