Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideFromFunctionPosition.kt
T
2021-05-07 00:40:41 +03:00

15 lines
145 B
Kotlin
Vendored

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