OSDN Git Service

* g++.dg/parse/repo1.C: Use cleanup-repo-files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / typename3.C
1 template <typename T>
2 struct D2 : public T::B {
3   typedef typename T::X::Y Y;
4
5   void f () {
6     Y::f ();
7   }
8 };