OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / inherit8.C
1 // PR c++/52685
2
3 template <typename T>
4 struct A
5 {
6   template <typename U>
7   struct B : public A <B<U> >
8   {
9     struct C : public B<U>
10     {
11     };
12   };
13 };