'operator' : illegal for 'class-key'
The operator was not defined for the structure or union. This error is only valid for C code.
The following sample generates C2088 three times:
// compile /Tc struct S { int m_i; } s; void function() { int i = s * 1; struct S s2 = +s; s++; }