Files
kotlin-fork/compiler/testData/diagnostics/tests/secondaryConstructors/delegationByWithoutPrimary.fir.kt
T

7 lines
74 B
Kotlin
Vendored

interface A
class AImpl : A
class B : A by AImpl() {
constructor()
}