Files
kotlin-fork/compiler/testData/codegen/script/secondLevelFunctionClosure.kts
2023-12-26 10:18:19 +00:00

14 lines
154 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-63960, KT-63963
val z = 30
var x: Int = 0
if (true) {
fun foo() = z + 20
x = foo()
}
val rv = x
// expected: rv: 50