9 lines
108 B
Kotlin
Vendored
9 lines
108 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
interface I {
|
|
fun foo()
|
|
}
|
|
|
|
class C : I {
|
|
override fun <caret>foo() {
|
|
}
|
|
} |