blob: 38ae6f808c949b364a4fcc4798dc2cec3b889d86 [file] [log] [blame]
/* PR middle-end/10336 */
/* { dg-options "-Wunreachable-code" } */
void foo(int i)
{
switch(i) {
case 0:
break;
case 1:
break;
}
}