]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.dg/imports/runnable.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / imports / runnable.d
1 module imports.runnable;
2
3 private import runnable;
4
5 /******************************************/
6 // https://bugzilla.gdcproject.org/show_bug.cgi?id=36
7
8 void test36d_1()
9 {
10 auto parser = Parser!(char[])();
11 }
12
13 /******************************************/
14 // https://bugzilla.gdcproject.org/show_bug.cgi?id=253
15
16 class B253 : A253
17 {
18 void test253(int[int] a)
19 {
20 if (a.get(0, 1))
21 return;
22 }
23 }