Files
kotlin-fork/compiler/testData/ir/irText/js/dynamic/dynamicBinaryRelationalOperator.kt
T

8 lines
197 B
Kotlin
Vendored

// TARGET_BACKEND: JS_IR
// FIR_IDENTICAL
fun testLess(d: dynamic) = d < 2
fun testLessOrEqual(d: dynamic) = d <= 2
fun testGreater(d: dynamic) = d > 2
fun testGreaterOrEqual(d: dynamic) = d >= 2