9 lines
123 B
Kotlin
Vendored
9 lines
123 B
Kotlin
Vendored
// PROBLEM: none
|
|
interface A {
|
|
fun foo()
|
|
}
|
|
class B : A {
|
|
override fun foo() {
|
|
}
|
|
}
|
|
class C(<caret>b: B) : A by b |