febac0dd5f
^KT-65979
10 lines
156 B
Kotlin
Vendored
10 lines
156 B
Kotlin
Vendored
// WITH_STDLIB
|
|
import kotlin.test.*
|
|
|
|
fun box(): String {
|
|
assertEquals(1, 0.compareTo(-0.0f))
|
|
assertEquals(0, 0.compareTo(+0.0f))
|
|
|
|
return "OK"
|
|
}
|