Files
kotlin/idea/testData/codeInsight/overrideImplement/traitNullableFunction.kt.after
2015-05-13 16:13:13 +02:00

9 lines
199 B
Plaintext
Vendored

interface Some {
fun foo(some : Int?) : Int
}
class SomeOther : Some {
override fun foo(some: Int?): Int {
<selection><caret>throw UnsupportedOperationException()</selection>
}
}