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

11 lines
115 B
Kotlin
Vendored

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