Files
kotlin/compiler/testData/codegen/box/boxingOptimization/intCompareTo.kt
Svyatoslav Kuzmich 4c38d55f21 [JS IR BE] Unmute tests
2018-10-15 00:03:45 +03:00

8 lines
169 B
Kotlin
Vendored

fun box(): String {
val a: Any = 1
val b: Any = 42
val test = (a as Comparable<Any>).compareTo(b)
if (test != -1) return "Fail: $test"
return "OK"
}