- more -f combo tests
[libfirm] / ir / be / test / Field.c
1 /*
2  * $Id$
3  */
4
5 #include <stdio.h>
6
7 struct s {
8   int a;
9 };
10
11 int m(struct s *pThis) {
12   return(pThis->a);
13 }
14
15 int main(void) {
16
17   printf("Field.c\n");
18
19   return 0;
20 }