blob: 6e5773efccd9e887693161d87c1340e2210b4d86 [file] [log] [blame]
// FIR_IDENTICAL
interface A {
fun String.foo()
}
class B : A {
override fun String.foo() {
<selection><caret>TODO("Not yet implemented")</selection>
}
}