[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / 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;