Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideFromFunctionPosition.kt
T

14 lines
124 B
Kotlin

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