Files
kotlin-fork/backend.native/tests/codegen/lambda/lambda5.kt
T
2017-10-20 18:25:05 +03:00

13 lines
154 B
Kotlin

package codegen.lambda.lambda5
import kotlin.test.*
@Test fun runTest() {
foo {
println(it)
}
}
fun foo(f: (Int) -> Unit) {
f(42)
}