xxxxxxxxxx
mixin template operators() {
S opBinary(string op, T)(T rhs) {
return rhs;
}
}
struct S {
mixin operators ops;
S opBinary(string op, T)(T a) {
return ops.opBinary!op(a);
}
}
void main() {
S.init.opBinary!"+"(S.init);
}