以下のようなテンプレートの特殊化がVC++(ver6)では通らないんですが
何が問題なのでしょうか?g++ならば通るんですが・・・。

template<typename T, typename U> struct test {};
template<class T> struct test<int,T> {};