OSDN Git Service

Revert accidental change to crash36.C
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / template12.C
1 template <int J>
2 struct A {
3 };
4
5 struct B {
6   template <int I>
7   struct C : public A<I> {};
8
9   typedef double I;
10 };