Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt.after
T
2019-11-13 08:37:25 +09:00

22 lines
354 B
Plaintext
Vendored

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() {
}
}