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

6 lines
91 B
Kotlin
Vendored

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