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

--- Comment #1 from Temtaime <[email protected]> ---
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.

--

Reply via email to