aboutsummaryrefslogtreecommitdiff
path: root/test/struct-passing-call.c
blob: 2ad746e65a6060d7f9edbe1f7110b1ab99724d22 (plain)
1
2
3
4
5
6
7
8
struct s {
	int x;
} s;

void f(struct s);
void g(void) {
	f(s);
}