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

9 lines
128 B
Kotlin

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