xref: /minix3/tests/usr.bin/xlint/lint1/d_c9x_array_init.c (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc /* C9X array initializers */
2*11be35a1SLionel Sambuc int foo[256] = {
3*11be35a1SLionel Sambuc 	[2] = 1,
4*11be35a1SLionel Sambuc 	[3] = 2,
5*11be35a1SLionel Sambuc 	[4 ... 5] = 3
6*11be35a1SLionel Sambuc };
7