3ba776fffa
#KT-11176 Fixed (cherry picked from commit 3641ad6)
12 lines
262 B
Plaintext
Vendored
12 lines
262 B
Plaintext
Vendored
// "Create secondary constructor" "true"
|
|
// ERROR: Primary constructor call expected
|
|
|
|
class CtorSecondary() {
|
|
constructor(p: Int) : this()
|
|
constructor<caret>(i: Int, i1: Int)
|
|
}
|
|
|
|
fun construct() {
|
|
// todo: add this()
|
|
val vA = CtorSecondary(2, 3)
|
|
} |