Files
kotlin-fork/compiler/testData/diagnostics/tests/delegation/Delegation_ScopeInitializationOrder.fir.kt
T

11 lines
82 B
Kotlin
Vendored

interface A {
fun foo() {}
}
interface B : A {}
class C(b : B) : B by b {
}