param_key: fix container of when no struct member is referenced
[smatch.git] / validation / flex-array-union-array.h
blobb2a74d1a06ea584083efab811009d7a136c877d9
1 struct s_flex {
2 int i;
3 long f[];
4 };
6 union s {
7 struct s_flex flex;
8 char buf[200];
9 };
11 static union s a[2];