13 lines
195 B
Kotlin
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()
|
|
} |