Files
kotlin-fork/compiler/testData/ir/irJsText/dynamic/dynamicBinaryRelationalOperator.kt
T
2022-06-02 13:47:33 +00:00

5 lines
170 B
Kotlin
Vendored

// 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