Files
kotlin-fork/compiler/testData/ir/irJsText/dynamic/dynamicArrayAugmentedAssignment.kt
T
2022-06-02 13:47:33 +00:00

9 lines
171 B
Kotlin
Vendored

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