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

11 lines
123 B
Kotlin
Vendored

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