blob: 4f9b5485ef95449325cb583f758c8b15cf6d7ba3 [file] [log] [blame]
// 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;
}
}