blob: 568c9e50dd0c47c6eda8a14edd264ff9d5e25ba8 [file]
interface Some {
fun foo(some : Int?) : Int
}
class SomeOther : Some {
override fun foo(some: Int?): Int {
<selection><caret>throw UnsupportedOperationException()</selection>
}
}