Files
kotlin-fork/idea/testData/intentions/convertPrimaryConstructorToSecondary/defaultValueChain.kt.after
T
Mikhail Glukhikh 7f50e6e70e KT-9839: intention introduced: convert primary constructor to secondary one
(cherry picked from commit 93aaa48)
2016-09-30 16:39:01 +03:00

11 lines
228 B
Plaintext
Vendored

class DefaultValueChain {
val x1: Int
val x3: Int
val x5: Int
constructor(x1: Int, x2: Int = x1, x3: Int = x2, x4: Int = x3, x5: Int = x4) {
this.x1 = x1
this.x3 = x3
this.x5 = x5
}
}