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

13 lines
195 B
Kotlin

package codegen.lambda.lambda13
import kotlin.test.*
@Test fun runTest() {
apply("foo") {
println(this)
}
}
fun apply(str: String, block: String.() -> Unit) {
str.block()
}