'function': クラス テンプレート 'class' のテンプレート パラメーター リストは、テンプレート template パラメーター 'parameter' のテンプレート パラメーター リストと一致しません
テンプレート template パラメーターには、指定されたクラス テンプレートと同じ数のテンプレート パラメーターがありません。
次の例では C3208 が生成されます。
// C3208.cpp
template <template <class T> class TT >
int f();
template <class T1, class T2>
struct S;
template <class T1>
struct R;
int i = f<S>(); // C3208
// try the following line instead
// int i = f<R>();