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

6 lines
82 B
Kotlin
Vendored

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