417f795ccef101c0e1cf47e4bf56429a894ab27c
[cdsspec-compiler.git] / test.c
1 #include <stdio.h>
2 #include "test.h"
3
4 struct XX {
5         
6 };
7
8 enum E {
9         a, b, c
10 };
11
12 void _foo(struct Test t) {
13         printf("%d\n", t.x);
14 }
15
16 void foo(struct Test t) {
17         _foo(t);
18 }
19
20 int main() {
21         printf("%d\n", b);
22         return 0;
23 }