Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt.after
T
2014-10-14 00:39:23 +04:00

20 lines
322 B
Plaintext

trait Test {
public open fun test()
protected open val testProp : Int
}
class SomeTest : Test {
val hello = 12
override fun test() {
<selection><caret>throw UnsupportedOperationException()</selection>
}
override val testProp: Int = 0
/**
* test
*/
fun some() {
}
}