mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
11 lines
90 B
Plaintext
11 lines
90 B
Plaintext
val x: Int
|
|
|
|
if (true) {
|
|
fun foo(y: Int) = y + 20
|
|
x = foo(9)
|
|
}
|
|
|
|
x
|
|
|
|
// expected: 29
|