new Makefile for test programs
[libfirm] / ir / be / test / fehler9.c
1 struct x {
2         int a;
3         int b;
4 } ;
5
6 typedef struct x X;
7
8 X test(void);
9
10
11 int main(void) {
12
13         X y;
14         y = test();
15         printf("%d %d\n", y.a, y.b);
16
17 }
18
19 X test(void) {
20         X a;
21         a.a = 2;
22         a.b = 3;
23         return(a);
24 }