coreboot-kgpe-d16/util/romcc/tests/fail_test5.c

15 lines
146 B
C

static void main(void)
{
static const int foo = 2;
switch(foo) {
case 1:
break;
default:
break;
case 2:
break;
default:
break;
}
}