coreboot-libre-fam15h-rdimm/util/romcc/tests/fail_test5.c

15 lines
146 B
C
Raw Normal View History

2024-03-04 11:14:53 +01:00
static void main(void)
{
static const int foo = 2;
switch(foo) {
case 1:
break;
default:
break;
case 2:
break;
default:
break;
}
}