Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
8b277dbf2a0b59c00963dac3dde55cf06a3f4dc6
/
.
/
plugins
/
power-assert
/
testData
/
codegen
/
function
/
InlineFunction.kt
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
()
})
}
}