aboutsummaryrefslogtreecommitdiff
path: root/tests/struct-passing.c
blob: 54c65a2088f40abeb9a791031edb5a250a2016af (plain)
1
2
3
4
5
6
7
8
9
10
11
struct s {
	int x;
	struct {
		char y[3];
		short z;
	} s[2];
	double w;
};

void f(struct s s) {
}