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

11 lines
115 B
Kotlin
Vendored

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