Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
99fe570405afa1c9b8db34c3fcff87c945c48255
/
.
/
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
()
})
}
}