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