Files
kotlin-fork/native/native.tests/testData/codegen/arithmetic/basic_uintTests.kt
T
Vladimir Sukharev df2dcccbf7 [Tests] Removed moved tests from old testing
^KT-64256 Fixed
2023-12-18 11:15:15 +00:00

8 lines
115 B
Kotlin
Vendored

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