blob: b7df0808a7964b8f2269d276c216da61aac5fdcb [file] [log] [blame]
Eric Biederman83b991a2003-10-11 06:20:25 +00001static const int foo[] = { 1, 2 };
2
3static void main(void)
4{
5 int x, y;
6 x = foo[0];
7 y = foo[1];
8}