testsuite: update mangling
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / array-conv16.C
blob1413971aaa22a962ab793533b4dd2036823035f5
1 // PR c++/91364 - P0388R4: Permit conversions to arrays of unknown bound.
2 // { dg-do compile { target c++20 } }
4 using P = int *(*)[3];
5 using S = const int *const (*)[];
6 using Q = const int *const (*)[3];
7 using Qi = const int *[3];
8 using Q2 = Qi const *;
10 void
11 f (P p, S s, Q q, Q2 q2)
13   s = p;
14   s = q;
15   s = q2;