Files
kotlin/idea/testData/codeInsight/overrideImplement/overrideFromClassName.kt
2015-05-13 16:13:13 +02:00

14 lines
128 B
Kotlin
Vendored

interface Some {
fun foo()
}
class <caret>Other {
fun test() {
val a = 1
}
fun otherTest() {
}
}