blob: 47e356d38f7a76a9f4d1d3638dbce869d305e120 [file]
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() {
}
}