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

14 lines
128 B
Kotlin
Vendored

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