Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
ranges
/
inOptimizableUnsignedRange.kt
blob: 271b06cb0e8657a6518873ca6f13d9ace5b167c2 [
file
]
fun testUIntRangeLiteral
(
a
:
UInt
,
b
:
UInt
)
=
42u
in
a
..
b
fun testULongRangeLiteral
(
a
:
ULong
,
b
:
ULong
)
=
42UL
in
a
..
b
fun testUIntUntil
(
a
:
UInt
,
b
:
UInt
)
=
42u
in
a
until
b
fun testULongUntil
(
a
:
ULong
,
b
:
ULong
)
=
42UL
in
a
until
b
// 0 contains