10063 basic support for smatch
[unleashed.git] / usr / src / tools / smatch / src / validation / anon-union.c
blob487f957b8eb181ab057a81179a5afe143e196ac6
1 struct s {
2 union {
3 int val;
4 };
5 };
7 static struct s foo = { .val = 5, };
8 /*
9 * check-name: test anonymous union initializer