https://issues.dlang.org/show_bug.cgi?id=8030
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from [email protected] --- 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 () --
