1struct buzz { 2 int a; 3}; 4 5struct flexible { 6 long count; 7 struct buzz lightyear[0]; 8}; 9 10struct flexible var; 11void fun(struct flexible flex) { (void) flex; } 12 13