Files
kotlin-fork/compiler/testData/ir/irText/js/dynamic/dynamicBinaryOperator.kt
T
Sergej Jaskiewicz 17a8fd2c0b [test] Move irJsText tests to irText directory
So that all irText tests could be found in one place
2023-03-22 15:18:15 +00:00

7 lines
192 B
Kotlin
Vendored

// FIR_IDENTICAL
fun testBinaryPlus(d: dynamic) = d + 1
fun testBinaryMinus(d: dynamic) = d - 1
fun testMul(d: dynamic) = d * 2
fun testDiv(d: dynamic) = d / 2
fun testMod(d: dynamic) = d % 2