aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/anon-union.c
blob: 487f957b8eb181ab057a81179a5afe143e196ac6 (plain)
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
 */