xref: /illumos-gate/usr/src/tools/smatch/src/validation/anon-union.c (revision 1da57d551424de5a9d469760be7c4b4d4f10a755)
1 struct s {
2         union {
3                 int val;
4         };
5 };
6 
7 static struct s foo = { .val = 5, };
8 /*
9  * check-name: test anonymous union initializer
10  */
11 
12