Files
kotlin-fork/compiler/testData/resolvedCalls/secondaryConstructors/overload3.kt
T
2015-03-11 17:45:23 +03:00

11 lines
109 B
Kotlin

class A {
constructor(x: Int) {
}
constructor(x: Int, y: String) {
}
}
<caret>A(1, "abc")