dmd/compiler/test/compilable/test8513.d
2022-07-09 18:53:07 +02:00

32 lines
633 B
D

interface I_Foo { void i_outer(); }
class C_Foo { void c_outer() { } }
class Bar
{
interface I_Foo { void i_inner(); }
class C_Foo { void c_inner() { } }
class Impl1 : C_Foo, I_Foo
{
override void i_inner() { }
override void c_inner() { }
}
class Impl2 : C_Foo, .I_Foo
{
override void i_outer() { }
override void c_inner() { }
}
class Impl3 : .C_Foo, I_Foo
{
override void i_inner() { }
override void c_outer() { }
}
class Impl4 : .C_Foo, .I_Foo
{
override void i_outer() { }
override void c_outer() { }
}
}