Files
kotlin-fork/compiler/testData/ir/irJsText/dynamic/dynamicArrayAugmentedAssignment.kt
T
2019-02-14 16:03:11 +03:00

8 lines
154 B
Kotlin
Vendored

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