Files
kotlin-fork/js/js.translator/testData/inlineMultiFile/cases/lambdaInLambda2/lambdaInLambda2.2.kt
T
2014-10-03 14:23:47 +04:00

14 lines
255 B
Kotlin
Vendored

/*
* Copy of JVM-backend test
* Found at: compiler/testData/codegen/boxInline/lambdaTransformation/lambdaInLambda2.2.kt
*/
package test
inline fun <R> mfun(f: () -> R) {
f()
}
fun concat(suffix: String, l: (s: String) -> Unit) {
l(suffix)
}