Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/traitNullableFunction.kt.after
T
2021-05-07 00:40:41 +03:00

10 lines
206 B
Plaintext
Vendored

// FIR_IDENTICAL
interface Some {
fun foo(some : Int?) : Int
}
class SomeOther : Some {
override fun foo(some: Int?): Int {
<selection><caret>TODO("Not yet implemented")</selection>
}
}