]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test15785.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test15785.d
CommitLineData
b4c522fa 1// REQUIRED_ARGS: -de
5fee5ec3 2// EXTRA_FILES: imports/test15785.d
b4c522fa 3// PERMUTE_ARGS:
b4c522fa
IB
4import imports.test15785;
5
6class Derived : Base, IBase2
7{
8 override void foo()
9 {
10 super.foo();
11 bar();
12 // Base.bar(); // doesn't work yet due to a bug in checkAccess
13 faz();
14 // IBase2.faz(); // doesn't work yet due to a bug in checkAccess
15 }
16
5fee5ec3 17 typeof(super).T t;
b4c522fa 18}