Files
kotlin-fork/compiler/testData/resolvedCalls/secondaryConstructors/explicitPrimaryCallSecondary.kt
T
2015-10-15 19:20:08 +03:00

11 lines
117 B
Kotlin
Vendored

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