13 lines
161 B
C
13 lines
161 B
C
struct buzz {
|
|
int a;
|
|
};
|
|
|
|
struct flexible {
|
|
long count;
|
|
struct buzz lightyear[0];
|
|
};
|
|
|
|
struct flexible var;
|
|
void fun(struct flexible flex) { (void) flex; }
|
|
|