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

14 lines
243 B
Kotlin
Vendored

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