7f50e6e70e
(cherry picked from commit 93aaa48)
18 lines
270 B
Plaintext
Vendored
18 lines
270 B
Plaintext
Vendored
class ParamAndProperties {
|
|
val y: Int
|
|
val w: Int
|
|
|
|
constructor(x: Int, y: Int, z: Int, w: Int) {
|
|
this.y = y
|
|
this.w = w
|
|
this.r = x + z
|
|
this.s = r + y
|
|
this.t = s + w
|
|
}
|
|
|
|
val r: Int
|
|
|
|
val s: Int
|
|
|
|
val t: Int
|
|
} |