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

void f(void) {
	s.x;
}