JVM_IR indy-lambdas: initial implementation and tests
KT-44278 KT-26060 KT-42621
This commit is contained in:
committed by
TeamCityServer
parent
0bc386cb08
commit
d94912ed62
@@ -0,0 +1,12 @@
|
||||
// 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()
|
||||
}
|
||||
Reference in New Issue
Block a user