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

12 lines
99 B
Kotlin
Vendored

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