eff57001dc
#KT-11865 Fixed
9 lines
202 B
Plaintext
Vendored
9 lines
202 B
Plaintext
Vendored
// "Create secondary constructor" "true"
|
|
|
|
class CtorPrimary(val f1: Int, val f2: Int?) {
|
|
constructor(f1: Int, f2: Int, i: Int) : this(f1, f2)
|
|
}
|
|
|
|
fun construct() {
|
|
val v6 = CtorPrimary(1, 2, 3)
|
|
} |