ed8674c0f9
#KT-7253 Fixed
9 lines
110 B
Kotlin
Vendored
9 lines
110 B
Kotlin
Vendored
interface T {
|
|
fun <caret>foo()
|
|
}
|
|
|
|
class A(val t: T) : T {
|
|
override fun foo() {
|
|
t.foo()
|
|
}
|
|
} |