Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/traitNullableFunction.kt.after
T
2012-02-23 23:00:03 +04:00

10 lines
166 B
Plaintext

trait Some {
fun foo(some : Int?) : Int
}
class SomeOther : Some {
override fun foo(some: Int?): Int {
throw UnsupportedOperationException()
}
}