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

8 lines
82 B
Kotlin
Vendored

// FIR_IDENTICAL
interface A {
fun String.foo()
}
class B : A {
<caret>
}