mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
10 lines
195 B
Kotlin
Vendored
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
|