interface A1 {
fun foo()
}
interface B1 {
fun foo()
}
class C1: A1, B1 {
override fun foo() {}
}
/*
LINEMARKER: Implements function in 'A1'
Implements function in 'B1'
TARGETS:
NavigateToSeveralSuperElements.kt
fun <1>foo()
}
interface B1 {
fun <2>foo()
*/