The member class must be defined before its first use that requires
an instantiation ([temp.inst]).
For example,
template<class T>struct A {class B;
};
A<int>::B* b1; // OK, requires A to be defined but not A::Btemplate<class T>class A<T>::B {};
A<int>::B b2; // OK, requires A::B to be defined