beb5d5e271
#KT-11866 Fixed
13 lines
263 B
Plaintext
Vendored
13 lines
263 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)
|
|
} |