aboutsummaryrefslogtreecommitdiff
path: root/test/bitfield-short.c
blob: b0be6fdb6f7d39e0e3c9e0ca92e90e50ca518452 (plain)
1
2
3
4
5
6
7
struct {
	short x : 7;
} s = {.x = -64};

int main(void) {
	return s.x > 0;
}