1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
struct s { int a[3]; int c[3]; }; struct s s = { c: {1, 2, 3} }; main() { if (s.c[0] != 1) abort (); exit (0); }