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

10 lines
119 B
Kotlin
Vendored

open class A {
open fun foo() {}
}
interface ATrait : A {
override fun foo() {
super<A>.foo()
}
}