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

11 lines
94 B
Kotlin
Vendored

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