Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/noneApplicable.kt
T
2016-04-19 20:27:39 +03:00

11 lines
229 B
Kotlin
Vendored

// "Create secondary constructor" "true"
// ERROR: Primary constructor call expected
class CtorSecondary() {
constructor(p: Int) : this()
}
fun construct() {
// todo: add this()
val vA = <caret>CtorSecondary(2, 3)
}