Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt.after
T
2014-10-06 17:53:02 +04:00

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