컴파일러 오류 C2906
'specialization': 명시적 특수화에는 'template <>'이 필요합니다.
템플릿의 명시적 특수화에 새 구문을 사용해야 합니다.
다음 샘플에서는 C2906을 생성합니다.
// C2906.cpp
// compile with: /c
template<class T> class X{}; // primary template
class X<int> { } // C2906
template<> class X<int> { }; // new syntax