Manfred Nowak via Digitalmars-d-learn Fri, 15 May 2015 14:36:12 -0700
The following gives: "Error: 'a += b' is not a scalar, it is a C" although UFCS should engage.
-manfred class C{} int main(){ void opOpAssign( string op)( C a, C b){ } C a, b; a+= b; }