xref: /netbsd-src/tests/usr.bin/xlint/lint1/d_c99_flex_array_packed.c (revision 0e552da7216834a96e91ad098e59272b41087480)
1 /* Allow packed c99 flexible arrays */
2 struct {
3 	int x;
4 	char y[0];
5 } __packed foo;
6 
7