7f50e6e70e
(cherry picked from commit 93aaa48)
15 lines
201 B
Plaintext
Vendored
15 lines
201 B
Plaintext
Vendored
class InitAndParams {
|
|
constructor(x: Int, z: Int) {
|
|
this.y = x
|
|
w = foo(y)
|
|
this.v = w + z
|
|
}
|
|
|
|
val y: Int
|
|
|
|
val w: Int
|
|
|
|
fun foo(arg: Int) = arg
|
|
|
|
val v: Int
|
|
} |