Errore del compilatore C2903
'identifier': il simbolo non è un modello di classe né un modello di funzione
Il codice tenta la creazione di un'istanza esplicita di un elemento che non è un modello.
L'esempio seguente genera l'errore C2903:
// C2903.cpp
// compile with: /c
namespace N {
template<class T> class X {};
class Y {};
}
void g() {
N::template Y y; // C2903
N::X<N::Y> y; // OK
}
L'errore C2903 può verificarsi anche quando si usano i generics:
// C2903b.cpp
// compile with: /clr /c
namespace N {
class Y {};
generic<class T> ref class Z {};
}
void f() {
N::generic Y y; // C2903
N:: generic Z<int>^ z; // OK
}