mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
18 lines
390 B
D
18 lines
390 B
D
// REQUIRED_ARGS: -de
|
|
// EXTRA_FILES: imports/test15785.d
|
|
// 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
|
|
}
|
|
|
|
typeof(super).T t;
|
|
}
|