aboutsummaryrefslogtreecommitdiff
path: root/test/bitfield-compound-assign.c
blob: 5ca42e457a3a7f3270dfd409296ced9ecc9a36ad (plain)
1
2
3
4
5
6
7
struct {
	int : 4, x : 9, : 3;
} s;

void f(void) {
	s.x += 3;
}