1 /* REQUIRED_ARGS: -betterC
2    PERMUTE_ARGS:
3  */
4 
5 
test(int ij)6 void test(int ij)
7 {
8     assert(ij);
9 #line 100 "anotherfile"
10     assert(ij,"it is not zero");
11 }
12 
main()13 extern (C) int main()
14 {
15     test(1);
16     return 0;
17 }
18