Files
kotlin/idea/testData/codeInsight/overrideImplement/traitNullableFunction.kt.after
Alexander.Podkhalyuzin b5b9f7ba98 Fixed broken testdata.
2012-05-23 15:58:12 +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()
}
}