blob: 5626f1bc79ef527abc26c050c4d5b2b1d9e1c198 [file]
open class A {
open fun Int.foo(): Int {
return 0
}
}
class B: A() {
override fun Int.foo(): Int {
<selection><caret>TODO("Not yet implemented")</selection>
}
}