aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/BUG5.c
blob: 9bed7136f59ce70d6928a93f2021d0fa98248cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
enum bar
{
  one,
  two
};

enum bar foo;

void bar()
{
  switch (foo)
  {
    case one:
    case two:
      printf ("one to two\n");
    break;
  }
}