[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / gcc / testsuite / g++.dg / inherit / access7.C
blob4e2db1479b7501e262e9fcb4155e852567c37da1
1 struct B {
2   static void f();
3 };
5 template <typename T>
6 struct D : private B {
7   void g() {
8     f();
9   }
11   
12 void h() {
13   D<int> d;
14   d.g();