8 lines
113 B
Plaintext
Vendored
8 lines
113 B
Plaintext
Vendored
// FIX: Remove var
|
|
interface A {
|
|
fun foo()
|
|
}
|
|
class B : A {
|
|
override fun foo() {}
|
|
}
|
|
class C(b: B) : A by b |