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

6 lines
121 B
Kotlin
Vendored

class A(x: Double) {
constructor(x: Int) {}
constructor(x: String) {}
<caret>constructor(): this("abc") {}
}