Files
kotlin-fork/compiler/testData/ir/irText/js/dynamic/dynamicArrayAugmentedAssignment.kt
T

11 lines
197 B
Kotlin
Vendored

// TARGET_BACKEND: JS_IR
// FIR_IDENTICAL
fun testArrayAugmentedAssignment(d: dynamic) {
d["KEY"] += "+="
d["KEY"] -= "-="
d["KEY"] *= "*="
d["KEY"] /= "/="
d["KEY"] %= "%="
}