'token' : unexpected token following '::', identifier or keyword 'operator' expected
The only tokens that can follow super::
are an identifier or the keyword operator
.
The following code sample shows one way this error could be generated:
struct B { void mf(); }; struct D : B { void mf() { __super::(); } };