]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test68.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test68.d
1 // PERMUTE_ARGS:
2 // EXTRA_FILES: imports/test68a.d
3 // https://issues.dlang.org/show_bug.cgi?id=4278
4
5 import imports.test68a;
6
7 class Foo : OtherModuleClass
8 {
9 override void foo()
10 {
11 super.foo();
12 }
13 }
14
15 void main()
16 {
17 new Foo();
18 }
19