コンパイラ エラー C2908
明示的な特殊化; 'template' は既にインスタンス化されています
プライマリ テンプレートの特殊化は、明示的な特殊化の前に行われます。
次の例では C2908 が生成されます。
// C2908.cpp
// compile with: /c
template<class T> class X {};
void f() {
X<int> x; //specialization and instantiation
//of X<int>
}
template<> class X<int> {} // C2908, explicit specialization