OSDN Git Service

PR rtl-optimization/52139
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr49120.c
1 /* PR c/49120 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wall" } */
4
5 int
6 main ()
7 {
8   int a = 1;
9   int c = ({ char b[a + 1]; b[0] = 0; b[0]; });
10   return c;
11 }