Files
kotlin-fork/compiler/testData/diagnostics/tests/thisAndSuper/traitSuperCall.kt
T

26 lines
284 B
Kotlin
Vendored

// 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()
}
}