11 lines
94 B
Plaintext
11 lines
94 B
Plaintext
val x: Int
|
|
|
|
if (true) {
|
|
fun foo(y: Int) = y + 20
|
|
x = foo(9)
|
|
}
|
|
|
|
x
|
|
|
|
// expected: rv: 29
|