Error del compilador C3698
'tipo': no se puede utilizar este tipo como argumento de 'operador'
Se ha declarado incorrectamente un objeto administrado.
El ejemplo siguiente genera el error C3698:
// C3698.cpp
// compile with: /clr
int main() {
array<int>^a = new array<int>^(20); // C3698
array<int>^a2 = gcnew array<int>(20); // OK
}