Files
kotlin-fork/compiler/testData/resolveConstructorDelegationCalls/thisSecondary.kt
T
2015-03-11 17:45:23 +03:00

5 lines
76 B
Kotlin
Vendored

class A {
constructor(x: Int) {}
<caret>constructor(): this(1) {}
}