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

11 lines
106 B
Kotlin
Vendored

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