September 01, 2014
https://issues.dlang.org/show_bug.cgi?id=13408

--- Comment #1 from Temtaime <temtaime@gmail.com> ---
There's one another issue.

mixin template R() {
    void foo() { writeln(1); }
    void foo() { writeln(2); }
}

struct S {
    mixin R;
}

void main() {
    S s;
}

This code compiles OK, but linker error.

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

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P2

--