blob: 04a531c356eaffd8993ce351170ef1edd74ce6f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// PR c++/91364 - Implement P0388R4: Permit conversions to arrays of unknown bound.
// { dg-do compile { target c++20 } }
// { dg-options "-Wpedantic" }
// Test flexible array member. Here we're binding int[] to int[]. This worked
// even before P0388R4.
typedef int T[];
extern T arr;
T &t1 = arr;
struct S {
int i;
int a[]; // { dg-warning "flexible array member" }
};
void f (int (&)[]);
void
test (S s)
{
f (s.a);
}
|