Files
kotlin-fork/compiler/testData/diagnostics/tests/delegation/Delegation_ScopeInitializationOrder.kt
T
2015-05-12 19:43:17 +02:00

11 lines
82 B
Kotlin
Vendored

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