Files
kotlin-fork/compiler/testData/resolveConstructorDelegationCalls/superPrimaryImplicit.kt
T
2015-05-12 19:43:17 +02:00

6 lines
73 B
Kotlin
Vendored

open class B
interface C
class A : B, C {
<caret>constructor() { }
}