]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/imports/test67a.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / imports / test67a.d
1 module imports.test67a;
2
3 import test67;
4
5 class Base
6 {
7 I create() {
8 return null;
9 }
10 }
11
12 class Derived : Base
13 {
14 override SubI create() {
15 return null;
16 }
17 }
18
19