Files
kotlin-fork/compiler/testData/codegen/box/invokedynamic/lambdas/extensionLambda.kt
T
Dmitry Petrov d94912ed62 JVM_IR indy-lambdas: initial implementation and tests
KT-44278 KT-26060 KT-42621
2021-02-03 14:16:22 +03:00

12 lines
208 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
// LAMBDAS: INDY
class C(val x: String)
fun boxLambda(lambda: C.() -> String) = lambda
fun box(): String {
val ext = boxLambda { x }
return C("OK").ext()
}