Files
kotlin/idea/testData/codeInsight/overrideImplement/traitNullableFunction.kt.after
olegkunov 96d7203370 KT-1378 Code formatting: spaces around ':'
Changed test data to match actual behavior of the "override methods" feature.
2012-03-01 21:18:37 +04:00

10 lines
168 B
Plaintext

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