다음을 통해 공유


컴파일러 오류 C3858

'type': 현재 범위에서 다시 선언할 수 없습니다.

동일한 범위에서 형식을 두 번 선언할 수 없습니다.

다음 샘플에서는 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{};