Errore del compilatore C3858
'type': non può essere dichiarato nuovamente nell'ambito corrente
Il tipo non può essere dichiarato due volte nello stesso ambito.
L'esempio seguente genera l'errore C3858:
// C3858.cpp
// compile with: /LD
template <class T>
struct Outer
{
struct Inner;
};
template <class T>
struct Outer<T>::Inner; // C3858
// try the following line instead
// struct Outer<T>::Inner{};