1 struct s {
2     long a;
3     int b;
4     int tab[];
5 };
6 
7 int idx = 1;
8 const struct s val = { 0, 0, { 42, 1337 } };
9