aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/930527-1.c
blob: 53e00e65ed1bf7d255b42498d8d70dc1fbf51a08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
enum {e0, e1};

int x[] =
{
  [e0] = 0
};

f ()
{
  switch (1)
    {
    case e0:
    case e1:
      break;
    }
}