다음을 통해 공유


컴파일러 오류 C2933

'class': type-class-id가 'identifier'의 typedef 멤버로 다시 정의됨

제네릭 또는 템플릿 클래스를 멤버로 typedef 사용할 수 없습니다.

이 오류는 Visual Studio 2022 이상 버전에서 사용되지 않습니다.

다음 샘플에서는 C2933을 생성합니다.

// C2933.cpp
// compile with: /c
template<class T> struct TC { };
struct MyStruct {
   typedef int TC<int>;   // C2933
};

struct TC2 { };
struct MyStruct2 {
   typedef int TC2;
};

제네릭을 사용할 때도 C2933이 발생할 수 있습니다.

// C2933b.cpp
// compile with: /clr /c
generic<class T> ref struct GC { };
struct MyStruct {
   typedef int GC<int>;   // C2933
};

ref struct GC2 { };
struct MyStruct2 {
   typedef int GC2;
};