Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / util / romcc / tests / fail_test10.c
1
2
3 struct result {
4         int a, b, c, d;
5 };
6
7 struct big_arg {
8         int a, b;
9 };
10 static struct result main(int a, int b, struct big_arg d)
11 {
12         struct result result;
13         result.a = 1;
14         result.b = 1;
15         result.c = b + 1;
16         result.d = a + 1;
17
18 }
19