aboutsummaryrefslogtreecommitdiff
path: root/test/struct-passing-bitfield.c
blob: fbda34ab2c058d09d02f4d944181f715d3f0271f (plain)
1
2
3
4
5
6
7
struct s {
	char x, y;
	long long z : 48;
};

void f(struct s s) {
}