blob: 4ddb01930ad0a52a89d5f80079ca4223cb1ba622 [file]
// IGNORE_BACKEND_K1: ANY
// DUMP_KT_IR
// WITH_COROUTINES
import helpers.*
fun box(): String = runAll(
"test1" to { test1() },
)
suspend fun getFalse() = false
fun test1() {
runBlocking {
assert(run { getFalse() })
}
}