Files
kotlin-fork/idea/testData/intentions/convertSecondaryConstructorToPrimary/defaultValueChain.kt.after
T
2016-09-30 16:39:24 +03:00

4 lines
106 B
Plaintext
Vendored

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