10 lines
128 B
Plaintext
Vendored
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
|
|
) {
|
|
|
|
}
|