blob: 8fc332c2b03f4b3079eeea8f17fa16c50df93840 [file]
interface Foo1 : Foo2 {
fun f<caret>oo()
}
interface Foo2 : Foo3 {
override fun foo()
}
interface Foo3 : Foo1 {
override fun foo()
}