725df49c8c
(cherry picked from commit f3fa779)
16 lines
181 B
Plaintext
Vendored
16 lines
181 B
Plaintext
Vendored
class InitAndParams(x: Int, z: Int) {
|
|
|
|
val y: Int = x
|
|
|
|
val w: Int
|
|
|
|
fun foo(arg: Int) = arg
|
|
|
|
val v: Int
|
|
|
|
init {
|
|
w = foo(y)
|
|
this.v = w + z
|
|
}
|
|
}
|