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

28 lines
540 B
Plaintext
Vendored

// FIR_IDENTICAL
interface A {
fun foo(value : String) : Int = 0
fun bar() : String = "hello"
}
class C : A {
override fun bar(): String {
<selection><caret>return super.bar()</selection>
}
override fun equals(other: Any?): Boolean {
return super.equals(other)
}
override fun foo(value: String): Int {
return super.foo(value)
}
override fun hashCode(): Int {
return super.hashCode()
}
override fun toString(): String {
return super.toString()
}
}