digitalmars.D.bugs - [Issue 8623] New: Multiple function match needs to print file+line numbers
- d-bugmail puremagic.com (38/38) Sep 05 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8623
- d-bugmail puremagic.com (9/9) Oct 06 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8623
- d-bugmail puremagic.com (11/11) Oct 06 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8623
http://d.puremagic.com/issues/show_bug.cgi?id=8623 Summary: Multiple function match needs to print file+line numbers Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: trivial Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: andrej.mitrovich gmail.com --- Comment #0 from Andrej Mitrovic <andrej.mitrovich gmail.com> 2012-09-05 16:22:55 PDT --- alias int LONG; void test(int* x) { } void test(LONG* x) { } void main() { test(null); } test.d(21): Error: function test.test called with argument types: ((typeof(null))) matches both: test.test(int* x) and: test.test(int* x) This is a simple case but it would be useful to file+line info since it helps me find codegenerator bugs. Error should be: test.d(21): Error: function test.test called with argument types: ((typeof(null))) matches both: test.d(17): test.test(int* x) and: test.d(18): test.test(int* x) -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Sep 05 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8623 --- Comment #1 from github-bugzilla puremagic.com 2012-10-06 08:36:04 PDT --- Commit pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/a0ea9c42648877c0a82d30ce2d0f78045c1af0e6 Merge pull request #1159 from AndrejMitrovic/Fix8623 fix Issue 8623 Add file and line number to overload error message. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 06 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8623 Walter Bright <bugzilla digitalmars.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |bugzilla digitalmars.com Version|D2 |D1 & D2 Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 06 2012