Thread overview
[Issue 8030] Multiple override are allowed using mixin template
Dec 17, 2022
Iain Buclaw
April 10, 2016
https://issues.dlang.org/show_bug.cgi?id=8030

andy.pj.hanson@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |andy.pj.hanson@gmail.com

--- Comment #2 from andy.pj.hanson@gmail.com ---
Related: overloads don't appear to be recognized from within mixin templates.
---
class X {
    void x() {}
    mixin template T() {
        void x(int y) { x(); }
    }
    mixin T;
}
// app.d(4): Error: function app.X.T!().x (int y) is not callable using
argument types ()

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=8030

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P2                          |P3

--
December 13
https://issues.dlang.org/show_bug.cgi?id=8030

--- Comment #3 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/dmd/issues/18436

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--