1struct s {
2	int i;
3	long f[];
4};
5
6static struct s a[2];
7
8/*
9 * check-name: flex-array-array
10 * check-command: sparse -Wflexible-array-array $file
11 *
12 * check-error-start
13flex-array-array.c:6:18: warning: array of flexible structures
14 * check-error-end
15 */
16