7f50e6e70e
(cherry picked from commit 93aaa48)
10 lines
124 B
Plaintext
Vendored
10 lines
124 B
Plaintext
Vendored
class UseParam {
|
|
constructor(x: Int) {
|
|
this.y = x
|
|
this.z = 2 * y
|
|
}
|
|
|
|
val y: Int
|
|
|
|
val z: Int
|
|
} |