e9c9d5731e
This is in preparation for enabling the tests for FIR which will be easier to do when the tests are on the new infrastructure.
20 lines
489 B
Kotlin
Vendored
20 lines
489 B
Kotlin
Vendored
|
|
|
|
// FILE: test.kt
|
|
fun blockFun(blockArg: String.() -> Unit) =
|
|
"OK".blockArg()
|
|
|
|
fun box() {
|
|
blockFun label@{
|
|
this
|
|
}
|
|
}
|
|
|
|
// EXPECTATIONS
|
|
// test.kt:8 box:
|
|
// test.kt:5 blockFun: blockArg:kotlin.jvm.functions.Function1=TestKt$box$1
|
|
// test.kt:9 invoke: $this$label:java.lang.String="OK":java.lang.String
|
|
// test.kt:10 invoke: $this$label:java.lang.String="OK":java.lang.String
|
|
// test.kt:5 blockFun: blockArg:kotlin.jvm.functions.Function1=TestKt$box$1
|
|
// test.kt:11 box:
|