Files
kotlin-fork/idea/testData/intentions/convertSecondaryConstructorToPrimary/defaultValueChain.kt.after.as36
T
2020-05-08 19:13:28 +07:00

10 lines
128 B
Plaintext
Vendored

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