]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/cassert.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / cassert.d
1 /* REQUIRED_ARGS: -betterC
2 PERMUTE_ARGS:
3 */
4
5
6 void test(int ij)
7 {
8 assert(ij);
9 #line 100 "anotherfile"
10 assert(ij,"it is not zero");
11 }
12
13 extern (C) int main()
14 {
15 test(1);
16 return 0;
17 }