Files
kotlin/compiler/testData/codegen/boxInline/lambdaInLambda2/2.kt
2014-03-03 15:43:35 +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)
}