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

9 lines
130 B
Kotlin
Vendored

// WITH_STDLIB
import kotlin.test.*
fun box(): String {
assertEquals(UInt.MAX_VALUE, UInt.MIN_VALUE - 1u)
return "OK"
}