Files
kotlin-fork/compiler/testData/codegen/box/arithmetic/basic_kt37412.kt
T
2024-02-26 13:38:49 +00:00

9 lines
126 B
Kotlin
Vendored

// WITH_STDLIB
import kotlin.test.*
fun box(): String {
val two = 2.0
assertEquals(2, two.toInt())
return "OK"
}