aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/switch3.C
blob: 4f9b5485ef95449325cb583f758c8b15cf6d7ba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// PR c++/39371
// { dg-do compile }

void
foo (bool b)
{
  switch ((unsigned int) b)
    {
    case 1:
    case 2:
      break;
    }
}

void
bar (unsigned char b)
{
  switch ((unsigned int) b)
    {
    case 1:
    case 257:
    case 513:
      break;
    }
}