blob: e7adc733fe1411f983426be1f570f5c93b34ef1e [file] [log] [blame]
// FIR_IDENTICAL
interface A {
fun a1()
fun a2()
fun a3()
fun a4()
fun a5()
fun a6()
fun a7()
fun a8()
}
class Test : A {
fun foo() {
}
override fun a1() {
<selection><caret>TODO("Not yet implemented")</selection>
}
override fun a2() {
TODO("Not yet implemented")
}
override fun a3() {
}
override fun a4() {
TODO("Not yet implemented")
}
override fun a5() {
TODO("Not yet implemented")
}
fun bar() {
}
override fun a6() {
}
override fun a7() {
TODO("Not yet implemented")
}
override fun a8() {
TODO("Not yet implemented")
}
fun baz() {
}
}