/* * It is known that this code not compiled by following compilers: * * It is known that this code compiled by following compilers: * * MSVC 6 * MSVC 8 Beta */ /* * This code represent what STLport waits from a compiler which support * member template classes (!_STLP_NO_MEMBER_TEMPLATE_CLASSES) */ template struct A { template struct B { typedef T2 _Type; }; }; template struct C { typedef typename A:: template B::_Type ABType; };