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

11 lines
187 B
Plaintext
Vendored

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