Files
kotlin/compiler/testData/codegen/bytecodeText/boxing/crossinlineSuspend.kt
2018-09-12 15:36:17 +03:00

10 lines
195 B
Kotlin
Vendored

// !LANGUAGE: +ReleaseCoroutines
inline fun inlineMe(crossinline c: suspend () -> Int): suspend () -> Int {
val i: suspend () -> Int = { c() + c() }
return i
}
// 1 valueOf
// 0 boxInt