Errore del compilatore C2140
'type': un tipo dipendente da un parametro di tipo generico non è consentito come argomento per il tratto intrinseco del tipo del compilatore 'trait'
Un identificatore di tipo non valido è stato passato a un tratto di tipo.
Per altre informazioni, vedere Supporto del compilatore per caratteristiche di tipo.
Esempio
L'esempio seguente genera l'errore C2140.
// C2140.cpp
// compile with: /clr /c
template <class T>
struct is_polymorphic {
static const bool value = __is_polymorphic(T);
};
class x {};
generic <class T>
ref class C {
void f() {
System::Console::WriteLine(__is_polymorphic(T)); // C2140
System::Console::WriteLine(is_polymorphic<T>::value); // C2140
System::Console::WriteLine(__is_polymorphic(x)); // OK
System::Console::WriteLine(is_polymorphic<x>::value); // OK
}
};