blob: 381c2e010f21a56cafd0583bc84f1f0f9460787a [file]
// FIR_IDENTICAL
// FILE: test.kt
public interface Test {
fun test(): String {
return "123";
}
}
interface KTrait : Test {
fun ktest() {
super.test()
test()
}
}
class A : KTrait {
fun b() {
super.test()
test()
}
}