Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / template12.C
blobba375bc437a898f9fc2a20bbf1b38fc070f2927d
1 template <int J>
2 struct A {
3 };
5 struct B {
6   template <int I>
7   struct C : public A<I> {};
9   typedef double I;