59009430e5
* Also inline suspend lambda'a * Also use correct JsName's in exported suspend inline fun's * Also use less unused imports
7 lines
113 B
Kotlin
Vendored
7 lines
113 B
Kotlin
Vendored
package inline
|
|
|
|
inline suspend fun f(body: () -> Unit) {
|
|
println("i'm inline suspend function")
|
|
body()
|
|
}
|