1 2 3 4 5 6 7 8 9 10 11
struct s { union { int val; }; }; static struct s foo = { .val = 5, }; /* * check-name: test anonymous union initializer */