summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/test15785.d
blob: 483c080861cd3a1965f0e3c8eab355b163040f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// REQUIRED_ARGS: -de
// PERMUTE_ARGS:
import imports.test15785;

class Derived : Base, IBase2
{
    override void foo()
    {
        super.foo();
        bar();
        // Base.bar(); // doesn't work yet due to a bug in checkAccess
        faz();
        // IBase2.faz(); // doesn't work yet due to a bug in checkAccess
    }

    super.T t;
}