Thread overview
[Issue 3810] New: overloading on const does not work for methods
[Issue 3810] overloading on const does not work for template methods
Jul 21, 2011
Kenji Hara
Dec 21, 2012
Andrej Mitrovic
February 18, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3810

           Summary: overloading on const does not work for methods
           Product: D
           Version: unspecified
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: andrei@metalanguage.com


--- Comment #0 from Andrei Alexandrescu <andrei@metalanguage.com> 2010-02-17 21:15:00 PST ---
struct A
{
    void fun() {}
    void fun() const {}
    T gun(T)() {}
    T gun(T)() const {}
}

void main() {
    A a;
    const A b;
    a.fun();
    b.fun();

    a.gun!int();
    b.gun!int();
}

The code should work. It does for fun() but not fur gun().

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
February 18, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3810


Steven Schveighoffer <schveiguy@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|overloading on const does   |overloading on const does
                   |not work for methods        |not work for template
                   |                            |methods


--- Comment #1 from Steven Schveighoffer <schveiguy@yahoo.com> 2010-02-18 04:51:34 PST ---
Taking the liberty of fixing your description since it doesn't match the example ;)

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
July 21, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=3810


Kenji Hara <k.hara.pg@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |k.hara.pg@gmail.com


--- Comment #2 from Kenji Hara <k.hara.pg@gmail.com> 2011-07-20 23:01:05 PDT ---
Probably this issue is same as issue 5896.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
December 21, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=3810


Andrej Mitrovic <andrej.mitrovich@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |andrej.mitrovich@gmail.com
         Resolution|                            |FIXED


--- Comment #3 from Andrej Mitrovic <andrej.mitrovich@gmail.com> 2012-12-21 09:13:03 PST ---
Fixed in 2.060

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------