11 lines
197 B
Kotlin
Vendored
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"] %= "%="
|
|
}
|