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

8 lines
106 B
Kotlin
Vendored

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