Rune - Fix array passing, optimize constant array indices
[rune.git] / tests / build3.d
1 #!/usr/local/bin/rune -x
2 #
3 # Used to help test the code generator output
4
5 import "sys";
6
7 #typedef runtime.SemGroup SemGroup;
8
9 int
10 main(int ac, char **av)
11 {
12         RunTime.SemGroup test;
13         int i;
14
15         i = 1;
16         test.sg_Node_next = CNULL;
17         i = 2;
18         test.sg_Node_prev = CNULL;
19         i = 3;
20
21         return 0;
22 }