Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/diagnostics/superCallWithDelegation.kt
T

12 lines
233 B
Kotlin
Vendored

interface A {
fun foo()
}
open class B(private val a: A) : A by a
class C(a: A) : B(a) {
override fun foo() {
// Should be resolved to delegated B.foo (no error)
super.<!ABSTRACT_SUPER_CALL!>foo<!>()
}
}