'operator operator' is not a recognized operator or type
The word operator must be followed by an operator that you want to override or a type you want to convert.
The following sample generates C2833:
class A { }; void operator ::* (); // C2833, remove the * to resolve the error void main() { }