[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / gcc / testsuite / g++.dg / parse / access8.C
blob42472def17c20a4f4d6278674f46d5276718870b
1 // PR c++/22618
3 class foo
5   typedef int memfun;  // { dg-message "private" }
6 };
8 template<foo::memfun> // { dg-error "context" }
9 struct fm_obj { };
11 template <typename T = foo::memfun> // { dg-error "context" }
12 struct S {};