testsuite: update mangling
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / class-deduction-aggr7.C
blob3505a8c97dbc3d3dd37a757390b70be85d7f39d8
1 // { dg-do compile { target c++20 } }
3 template <class T, int N>
4 struct A
6   T ar[N];
7 };
9 A a = { "foo" };
11 template<class, class> struct same;
12 template<class T> struct same<T,T> {};
13 same<decltype (a.ar), char[4]> s;