Files
kotlin/compiler/testData/codegen/boxInline/arrayConvention/simpleAccessWithLambda.1.kt

16 lines
223 B
Kotlin
Vendored

import test.*
fun box(): String {
val z = 1;
val p = z[2, { 3 }]
if (p != 6) return "fail 1: $p"
val captured = 3;
z[2, { captured } ] = p
if (res != 12) return "fail 2: $res"
return "OK"
}