e19ecdfb3d
This commit enables the execution of suspend box tests in a separate test. It's a QoL improvement in the existing bb tests but, motivating these changes, enables the new debugger stepping tests to step coroutine code.
10 lines
271 B
Kotlin
Vendored
10 lines
271 B
Kotlin
Vendored
// WITH_COROUTINES
|
|
// FILE: test.kt
|
|
|
|
suspend fun box() {
|
|
var x = 1
|
|
}
|
|
|
|
// LOCAL VARIABLES
|
|
// TestKt:5: $completion:kotlin.coroutines.Continuation=helpers.ResultContinuation
|
|
// TestKt:6: $completion:kotlin.coroutines.Continuation=helpers.ResultContinuation, x:int=1:int |