コンパイラ エラー C2427
'class' : このスコープではクラスを定義できません
入れ子になったクラスを定義しようとしましたが、入れ子になったクラスは、最も格納しているクラスではなく、基底クラスのメンバーです。
次の例では警告 C2427 が生成されます。
// C2427.cpp
// compile with: /c
template <class T>
struct S {
struct Inner;
};
struct Y : S<int> {};
struct Y::Inner {}; // C2427
// OK
template<typename T>
struct S<T>::Inner {};