mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
19 lines
268 B
Kotlin
Vendored
19 lines
268 B
Kotlin
Vendored
import test.*
|
|
|
|
|
|
fun box(): String {
|
|
|
|
val z = 1;
|
|
|
|
with(A()) {
|
|
|
|
val p = z[2, { 3 }]
|
|
if (p != 106) return "fail 1: $p"
|
|
|
|
val captured = 3;
|
|
z[2, { captured }] = p
|
|
if (res != 112) return "fail 2: $res"
|
|
}
|
|
|
|
return "OK"
|
|
} |