Files
kotlin/idea/testData/codeInsight/overrideImplement/traitNullableFunction.kt.after
2014-10-06 17:53:02 +04:00

9 lines
195 B
Plaintext

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