Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/UIntSafeAsInt.kt
T

5 lines
132 B
Kotlin
Vendored

// WITH_RUNTIME
fun testUIntSafeAsInt(x: UInt) = x as? Int
fun box(): String = if (testUIntSafeAsInt(1U) != null) "fail" else "OK"