Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt.after
T
2015-10-07 11:57:14 +03:00

22 lines
374 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>throw UnsupportedOperationException()</selection>
}
override val testProp: Int
get() = throw UnsupportedOperationException()
/**
* test
*/
fun some() {
}
}