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