Files
kotlin/compiler/testData/codegen/boxInline/lambdaTransformation/regeneratedLambdaName.2.kt
2015-09-23 12:18:12 +03:00

7 lines
87 B
Kotlin
Vendored

package test
inline fun <R> call(crossinline f: () -> R) : R {
return {f()} ()
}