'method' : method after 'super' is ambiguous
This error appears whenever the compiler finds two or more base-class methods that match the signature of the current method.
The following code sample shows one way this error could be generated:
struct B1 { void mf(); }; struct B2 { void mf(); }; struct D : B1, B2 { void mf() { __super::mf(); } };