13 lines
155 B
Kotlin
13 lines
155 B
Kotlin
package codegen.lambda.lambda1
|
|
|
|
import kotlin.test.*
|
|
|
|
@Test fun runTest() {
|
|
run {
|
|
println("lambda")
|
|
}
|
|
}
|
|
|
|
fun run(f: () -> Unit) {
|
|
f()
|
|
} |