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

9 lines
100 B
C

static const int foo[] = { 1, 2 };
static void main(void)
{
int x, y;
x = foo[0];
y = foo[1];
}