[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / gcc / testsuite / g++.dg / other / crash-9.C
blob0953fcbc46b9f64908e0cb7bc917bbe87a08e432
1 // Origin: PR c++/42915
2 // { dg-do compile }
4 template <typename T>
5 class A
7   template <typename U>
8   class B
9   {
10     B foo();
11   };
13 template <typename T> template <typename U>
14 A<T>::B<U> A<T>::B<U>::foo() {}