Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/traitNullableFunction.kt
T
2012-01-18 12:16:40 +04:00

7 lines
85 B
Kotlin

trait Some {
fun foo(some : Int?) : Int
}
class SomeOther : Some {
<caret>
}