mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
6 lines
157 B
Kotlin
Vendored
6 lines
157 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// KJS_WITH_FULL_RUNTIME
|
|
|
|
fun testUIntSafeAsInt(x: UInt) = x as? Int
|
|
|
|
fun box(): String = if (testUIntSafeAsInt(1U) != null) "fail" else "OK" |