'super' : this keyword must be followed by '::'
The only token that can follow the keyword super is ::.
::
The following code sample shows one way this error could be generated:
struct B { void mf(); }; struct D : B { void mf() { __super.(); } };