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

8 lines
114 B
Kotlin
Vendored

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