[Issue 4392] New: Problems with const/non-const overloads of member functions
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Jun 25 07:34:45 PDT 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4392
Summary: Problems with const/non-const overloads of member
functions
Product: D
Version: D2
Platform: x86
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: webby at beardmouse.org.uk
--- Comment #0 from Richard Webb <webby at beardmouse.org.uk> 2010-06-25 07:34:43 PDT ---
Using the latest DMD2, the code:
//
class c1
{
void foo() const
{
}
void foo()
{
}
void bar() const
{
foo();
}
}
//
fails to compile with the error:
constest.d(15): Error: function constest.c1.foo () is not callable using
argument types () const
However, if I either:
1) Change bar() to call this.foo() or
2) switch the 2 foo()s so that the const version is defined second.
Then it compiles ok.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list