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

andy.pj.han...@gmail.com changed:

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

--- Comment #2 from andy.pj.han...@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 ()

--

Reply via email to