'super::member' is ambiguous
Multiple inherited structures contain the member you referenced with super. You could fix the error by either,
For example, the following code shows how this error would be generated.
struct B1 { int i; }; struct B2 { int i; }; struct D : B1, B2 { void g() { __super::i = 4; } };