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