Condividi tramite


Errore del compilatore C2992

'class': elenco di parametri di tipo non valido o mancante

La classe è preceduta da una parola chiave template o generic con parametri mancanti o non validi.

Esempio

L'esempio seguente genera l'errore C2992:

// C2992.cpp
// compile with: /c
template <class T>
struct Outer {
   template <class U>
   struct Inner;
};

template <class T>   // C2992
struct Outer<T>::Inner {};

template <class T>
template <class U>   // OK
struct Outer<T>::Inner {};

C2992 può verificarsi anche quando si usano generics:

// C2992b.cpp
// compile with: /c /clr
generic <class T>
ref struct Outer {
   generic <class U>
   ref struct Inner;
};

generic <class T>   // C2992
ref struct Outer<T>::Inner {};

generic <class T>
generic <class U>   // OK
ref struct Outer<T>::Inner {};