8 lines
124 B
Kotlin
Vendored
8 lines
124 B
Kotlin
Vendored
// FIX: Remove var
|
|
interface A {
|
|
fun foo()
|
|
}
|
|
class B : A {
|
|
override fun foo() {}
|
|
}
|
|
class C(var b: B<caret>) : A by b |