beb5d5e271
#KT-11866 Fixed
11 lines
229 B
Kotlin
Vendored
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)
|
|
} |