PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / init-bad-6.c
blob8235f5d967664acedf2f8e31f7196dacef9d6281
1 /* ICE arising from bug computing composite type of zero-length array
2 types: PR 35433. */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
6 typedef int* X;
7 typedef int* Y;
9 X (*p)[][0];
10 Y (*q)[][0];
12 typeof(*(0 ? p : q)) x = { 0 }; /* { dg-warning "excess elements in array initializer|near initialization" } */