[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2013-01-07 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 Kenji Hara changed: What|Removed |Added CC||dmitry.o...@gmail.com --- Comment #9 from

[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2012-12-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 Andrej Mitrovic changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2012-12-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 Andrej Mitrovic changed: What|Removed |Added CC||bugzi...@kyllingen.net --- Comment #

[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2012-10-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 --- Comment #6 from bearophile_h...@eml.cc 2012-10-21 14:33:36 PDT --- (In reply to comment #5) > If it's in a 3rd party library then the user has no other choice but to use a > const object. I don't think we should start recommending to rewrit

[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2012-10-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 --- Comment #5 from Andrej Mitrovic 2012-10-21 14:15:14 PDT --- (In reply to comment #4) > But I think a better error message, more newbie-friendly, tells the programmer > how to fix the problem, (not complete error message): > > test.d(11):

[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2012-10-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 bearophile_h...@eml.cc changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIX

[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2012-10-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 Andrej Mitrovic changed: What|Removed |Added CC||bearophile_h...@eml.cc --- Comment #

[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2012-10-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 Brad Roberts changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2012-10-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 --- Comment #2 from github-bugzi...@puremagic.com 2012-10-08 10:48:56 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/d123b58057a8116d3549418551ed7ea03f9c46c

[Issue 6707] Error message for mismatch of const/non-const property functions needs to improve

2012-10-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6707 --- Comment #1 from Andrej Mitrovic 2012-10-04 12:56:30 PDT --- Better test case: struct Foo { @property bool value() { return true; } void test() const { auto x = value; // not callable using argument types ()