Files
kotlin-fork/native/native.tests/testData/codegen/arithmetic/basic_kt37412.kt
T
2023-12-18 11:15:15 +00:00

8 lines
111 B
Kotlin
Vendored

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