blob: 0b3bf5f4e9d7e55dd3171e6e5a6d1f08290f9b62 [file] [log] [blame]
Eric Biederman90089602004-05-28 14:11:54 +00001
2
3struct big_arg {
4 int x, y;
5};
6struct result {
7 struct big_arg a;
8 int c, d;
9};
10
11static struct result main(int a, int b, int c, int d)
12{
13 struct result result;
14 result.a.x = d + 1;
15 result.a.y = c + 1;
16 result.c = b + 1;
17 result.d = a + 1;
18
19 return result;
20}