Enable -Werror for romcc
[coreboot.git] / util / romcc / tests / simple_test63.c
1 static const int foo[] = { 1, 2 };
2
3 static void main(void)
4 {
5         int x, y;
6         x = foo[0];
7         y = foo[1];
8 }