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

9 lines
149 B
Kotlin
Vendored

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