Files
kotlin-fork/compiler/testData/debug/localVariables/suspend/simple.kt
T
2022-11-09 12:35:44 +00:00

15 lines
419 B
Kotlin
Vendored

// WITH_STDLIB
// FILE: test.kt
suspend fun box() {
var x = 1
}
// EXPECTATIONS JVM JVM_IR
// test.kt:5 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
// test.kt:6 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1, x:int=1:int
// EXPECTATIONS JS_IR
// test.kt:5 box: $completion=EmptyContinuation
// test.kt:6 box: $completion=EmptyContinuation, x=1:number