lots of change and add notes
[cdsspec-compiler.git] / test.c
1 #include <stdio.h>
2 #include "test.h"
3
4 void _foo(struct Test t) {
5         printf("%d\n", t.x);
6 }
7
8 void foo(struct Test t) {
9         _foo(t);
10 }
11
12 int main() {
13         return 0;
14 }