Files
kotlin-fork/compiler/testData/codegen/boxInline/lambdaTransformation/regeneratedLambdaName.2.kt
T

8 lines
116 B
Kotlin
Vendored

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