aboutsummaryrefslogtreecommitdiff
path: root/test/bitfield-union.c
blob: f366ec84bc96cfd170ab022bc7542976f7cfca7f (plain)
1
2
3
4
union {
	int x : 5;
	int y : 10;
} u = {.y = 123};