Files
kotlin/compiler/testData/codegen/boxInline/lambdaTransformation/lambdaInLambda2.2.kt
2015-04-13 16:11:21 +03:00

9 lines
130 B
Kotlin
Vendored

package test
inline fun <R> mfun(f: () -> R) {
f()
}
fun noInline(suffix: String, l: (s: String) -> Unit) {
l(suffix)
}