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

11 lines
199 B
Plaintext
Vendored

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