aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/BUG5.c
blob: 390196b818d0f25b25d4700201ec274b846d209d (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:
      __builtin_printf ("one to two\n");
    break;
  }
}