Files
kotlin/compiler/testData/codegen/boxInline/lambdaTransformation/regeneratedLambdaName.2.kt
2014-07-07 10:51:46 +04:00

8 lines
137 B
Kotlin

package test
import kotlin.InlineOption.*
inline fun <R> call(inlineOptions(ONLY_LOCAL_RETURN) f: () -> R) : R {
return {f()} ()
}