Files
kotlin/compiler/testData/codegen/box/multiDecl/VarCapturedInFunctionLiteral.kt

15 lines
226 B
Kotlin
Vendored

class A {
operator fun component1() = 1
operator fun component2() = 2
}
fun box() : String {
var (a, b) = A()
val local = {
a = 3
}
local()
return if (a == 3 && b == 2) "OK" else "fail"
}