다음을 통해 공유


컴파일러 오류 C2913

명시적인 전문화; 'declaration'은 클래스 템플릿의 전문화가 아닙니다.

템플릿이 아닌 클래스는 특수화할 수 없습니다.

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

// C2913.cpp
// compile with: /c
class X{};
template <class T> class Y{};

template<> class X<int> {};   // C2913
template<> class Y<int> {};