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

10 lines
166 B
Kotlin
Vendored

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