FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.dg / parse / typename3.C
blobce6ecbef87a1a4798d447751f2c0e7de5407c4e5
1 template <typename T>
2 struct D2 : public T::B {
3   typedef typename T::X::Y Y;
5   void f () {
6     Y::f ();
7   }
8 };