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

10 lines
133 B
Kotlin
Vendored

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