9 lines
84 B
Kotlin
Vendored
9 lines
84 B
Kotlin
Vendored
interface A {
|
|
fun foo()
|
|
}
|
|
|
|
class B: A {
|
|
override fun <caret>foo() {
|
|
|
|
}
|
|
} |