Files
kotlin-fork/compiler/testData/ir/irText/js/dynamic/dynamicMemberAssignment.kt.txt
T
Vladimir Sukharev bae8b283c7 [IR] Normalize temp var names in Kotlin-like dump
^KT-61983 Fixed
2023-10-11 07:49:35 +00:00

15 lines
244 B
Kotlin
Vendored

fun testMemberAssignment(d: dynamic) {
d.m = 1
}
fun testSafeMemberAssignment(d: dynamic) {
{ // BLOCK
val tmp_0: dynamic = d
when {
EQEQ(arg0 = tmp_0, arg1 = null) -> null /*~> Unit */
else -> tmp_0.m = 1
}
}
}