aboutsummaryrefslogtreecommitdiff
path: root/test/bitfield-load-unsigned.c
blob: 5a9e5fab6fa7919e4e4dc913b4c5e616fc998b42 (plain)
1
2
3
4
5
6
7
struct {
	unsigned : 4, x : 15, : 13;
} s;

void f(void) {
	s.x;
}