mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
12 lines
98 B
Plaintext
12 lines
98 B
Plaintext
val z = 30
|
|
val x: Int
|
|
|
|
if (true) {
|
|
fun foo() = z + 20
|
|
x = foo()
|
|
}
|
|
|
|
x
|
|
|
|
// expected: rv: 50
|