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

10 lines
174 B
Plaintext
Vendored

// FIR_IDENTICAL
interface A {
fun String.foo()
}
class B : A {
override fun String.foo() {
<selection><caret>TODO("Not yet implemented")</selection>
}
}