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

13 lines
127 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;
case 2:
break;
default:
break;
}
}