aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/overload/VLA.C
blob: 850e19a0054a7997c8cbe9e9bf5020ad87a1aff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Origin: kengole@us.ibm.com

//PR c++/2478
// G++ was rejecting this as it could not convert `int (*)[]' to `int (*)[0]'.
// Using the C99 VLA style arrays in a struct.

// { dg-do compile }

struct {
  int (*p)[];
} B;

void foo() {
  int (*p)[];
  B.p=p;  // { dg-bogus "cannot convert" }
}