Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/traitNullableFunction.kt.after
T
2019-11-13 08:37:25 +09:00

9 lines
189 B
Plaintext
Vendored

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