mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
11 lines
107 B
Kotlin
Vendored
11 lines
107 B
Kotlin
Vendored
var x: Int = 0
|
|
|
|
if (true) {
|
|
fun foo(y: Int) = y + 20
|
|
x = foo(9)
|
|
}
|
|
|
|
val rv = x
|
|
|
|
// expected: rv: 29
|