OSDN Git Service

PR c++/45315
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / init / array2.C
1 // Check that the type of an array is set correctly when flat initializers
2 // are used.
3
4 // { dg-do compile }
5
6 struct s { int a; int b; };
7 struct s x[] = { 1, 2, 3, 4 };
8 int y[sizeof (x) == 2 * sizeof (x[0])? 1 : -1];