'class::*' found at the start of a statement (did you forget to specify a type?)
The line began with a pointer-to-member identifier.
Possible cause
Example
class C {}; void main() { C::* pmc1; // error void C::* pmc2; // OK }