7f50e6e70e
(cherry picked from commit 93aaa48)
7 lines
131 B
Kotlin
Vendored
7 lines
131 B
Kotlin
Vendored
class ParamAndProperties<caret>(x: Int, val y: Int, z: Int, val w: Int) {
|
|
val r = x + z
|
|
|
|
val s = r + y
|
|
|
|
val t = s + w
|
|
} |