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