Errore del compilatore C2793
'token': previsto token imprevisto dopo ':', identificatore o parola chiave 'operator'
Gli unici token che possono seguire __super::
sono un identificatore o la parola chiave operator
.
L'esempio seguente genera l'errore C2793
// C2793.cpp
struct B {
void mf();
};
struct D : B {
void mf() {
__super::(); // C2793
}
};