1 /* { dg-do compile } */
2 /* { dg-options "-g -O0" } */
3 int
main(int argc,char ** argv)4 main (int argc, char **argv)
5 {
6   if (0)
7     {
8       static union
9       {
10       }
11       u;
12       typedef char tt;
13       static tt c[8];
14       return c[0] == 0x01 && c[1] == 0x02;
15     }
16 }
17