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

7 lines
92 B
Kotlin
Vendored

interface A
class AImpl : A
class B : <!UNSUPPORTED!>A by AImpl()<!> {
constructor()
}