Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
1f76d39e66b4ee8544feac93e4afd8e61ef9610a
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
UIntSafeAsInt.kt
blob: 38c86793459ce3be580799c0ba094d68356e9d8c [
file
]
// WITH_STDLIB
fun testUIntSafeAsInt
(
x
:
UInt
)
=
x
as
?
Int
fun box
():
String
=
if
(
testUIntSafeAsInt
(
1U
)
!=
null
)
"fail"
else
"OK"