NetBSD/tests/util/xlint/lint1/d_c9x_array_init.c
jmmv 7ce6f390a2 Convert the lint1 tests to atf.
Initial work from the GSoC 2008 project by Lukasz Strzygowski.
2010-07-18 10:11:00 +00:00

7 lines
84 B
C

/* C9X array initializers */
int foo[256] = {
[2] = 1,
[3] = 2,
[4 ... 5] = 3
};