Errore del compilatore C3855
'class': il parametro di tipo 'param' non è compatibile con la dichiarazione
Il compilatore ha trovato un modello non di tipo o parametri generici con nomi diversi. Ciò può verificarsi quando un parametro di modello specificato nella definizione di una specializzazione di modello non è compatibile con la relativa dichiarazione.
L'esempio seguente genera l'errore C3855:
// C3855.cpp
template <int N>
struct C {
void f();
};
template <char N>
void C<N>::f() {} // C3855
Possibile soluzione:
// C3855b.cpp
// compile with: /c
template <int N>
struct C {
void f();
};
template <int N>
void C<N>::f() {}
C3855 può verificarsi anche quando si usano generics:
// C3855c.cpp
// compile with: /clr
generic <class T>
ref struct GC1 {
generic <class U>
ref struct GC2;
};
generic <class T>
generic <class U>
generic <class V>
ref struct GC1<T>::GC2 { }; // C3855
Possibile soluzione:
// C3855d.cpp
// compile with: /clr /c
generic <class T>
ref struct GC1 {
generic <class U>
ref struct GC2;
};
generic <class T>
generic <class U>
ref struct GC1<T>::GC2 { };