xref: /aosp_15_r20/external/stg/test_cases/info_tests/struct/anonymous.c (revision 9e3b08ae94a55201065475453d799e8b1378bea6)
1 typedef struct {
2   union {
3     struct {
4       unsigned int x;
5       unsigned int y;
6     };
7     unsigned long long z;
8   };
9 } Foo;
10 
11 Foo var;
12