Errore del compilatore C2902
'token': token imprevisto dopo 'template', identificatore previsto
Il token che segue la parola chiave template
non è un identificatore.
Questo errore è obsoleto in Visual Studio 2022 e versioni successive.
L'esempio seguente genera l'errore C2902:
// C2902.cpp
// compile with: /c
namespace N {
template<class T> class X {};
class Y {};
}
void g() {
N::template + 1; // C2902
}
void f() {
N::template X<int> x1; // OK
}
C2902 può verificarsi anche quando si usano i generics:
// C2902b.cpp
// compile with: /clr /c
namespace N {
generic<class T> ref class GC {};
}
void f() {
N::generic + 1; // C2902
N::generic GC<int>^ x;
}