1 /* ICE arising from bug computing composite type of zero-length array
2    types: PR 35433.  */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
5 
6 typedef int* X;
7 typedef int* Y;
8 
9 X (*p)[][0];
10 Y (*q)[][0];
11 
12 typeof(*(0 ? p : q)) x = { 0 }; /* { dg-warning "excess elements in array initializer|near initialization" } */
13