17 lines
273 B
Kotlin
Vendored
17 lines
273 B
Kotlin
Vendored
/*
|
|
* Copy of JVM-backend test
|
|
* Found at: compiler/testData/codegen/boxInline/capture/captureInlinable.2.kt
|
|
*/
|
|
|
|
package test
|
|
|
|
|
|
inline fun <R> doWork(crossinline job: ()-> R) : R {
|
|
return notInline({job()})
|
|
}
|
|
|
|
fun <R> notInline(job: ()-> R) : R {
|
|
return job()
|
|
}
|
|
|