aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/init-bad-6.c
blob: 8235f5d967664acedf2f8e31f7196dacef9d6281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* ICE arising from bug computing composite type of zero-length array
   types: PR 35433.  */
/* { dg-do compile } */
/* { dg-options "" } */

typedef int* X;
typedef int* Y;

X (*p)[][0];
Y (*q)[][0];

typeof(*(0 ? p : q)) x = { 0 }; /* { dg-warning "excess elements in array initializer|near initialization" } */