xref: /illumos-gate/usr/src/tools/smatch/src/validation/backend/union.c (revision 37e2cd25d56b334a2403f2540a0b0a1e6a40bcd1)
1 union foo {
2 	unsigned long		x;
3 	unsigned char		y;
4 	char			buf[128];
5 };
6 
7 static union foo foo;
8 
9 /*
10  * check-name: Union code generation
11  * check-command: sparsec -c $file -o tmp.o
12  */
13