[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template16.C
blobbc41b0f45910ebb395222cb861776c2d3f2f900f
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 26 May 2005 <nathan@codesourcery.com>
4 // Origin:Volker Reichelt reichelt@gcc.gnu.org
5 // PR 21681. ICE with inappropriate access check.
7 template<int X> struct A;
9 struct B
11     template<int N> void foo()
12     {
13         A<N>::X::Y;
14     }