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

11 lines
103 B
Kotlin
Vendored

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