mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
12 lines
158 B
Kotlin
Vendored
12 lines
158 B
Kotlin
Vendored
package test
|
|
|
|
|
|
inline fun <R> doWork(crossinline job: ()-> R) : R {
|
|
return notInline({job()})
|
|
}
|
|
|
|
fun <R> notInline(job: ()-> R) : R {
|
|
return job()
|
|
}
|
|
|