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

23 lines
371 B
Plaintext
Vendored

// FIR_IDENTICAL
interface Test {
public open fun test()
public open val testProp : Int
}
class SomeTest : Test {
val hello = 12
override fun test() {
<selection><caret>TODO("Not yet implemented")</selection>
}
override val testProp: Int
get() = TODO("Not yet implemented")
/**
* test
*/
fun some() {
}
}