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

--- Comment #4 from Basile-z <b2.t...@gmx.com> ---
other example:

struct Foo {
    Foo opBinary(string op="-")(Foo f) {
        return Foo();
    }
}
void main() {
    auto Foo = Foo() + Foo();
}

--

Reply via email to