7abc6af124
^KT-57566 Fixed
6 lines
143 B
Kotlin
Vendored
6 lines
143 B
Kotlin
Vendored
// TARGET_BACKEND: JS_IR
|
|
// FIR_IDENTICAL
|
|
fun testUnaryMinus(d: dynamic) = -d
|
|
fun testUnaryPlus(d: dynamic) = +d
|
|
fun testExcl(d: dynamic) = !d
|