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

9 lines
98 B
Kotlin
Vendored

// FIR_IDENTICAL
interface A {
fun foo(value : String) : Int = 0
}
class C : A {
<caret>
}