Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
constants
/
inlineUnsignedIntConstant.kt
blob: aaeae9efd69399c328fe19568aa593717550294a [
file
] [
log
] [
blame
]
// !LANGUAGE: +InlineClasses
// IGNORE_BACKEND_FIR: JVM_IR
// FILE: uint.kt
package
kotlin
inline
class
UInt
(
val value
:
Int
)
// FILE: test.kt
const
val u
=
UInt
(
14
)
fun foo
()
{
u
if
(
u
.
value
!=
14
)
{}
}
// @TestKt.class:
// 0 GETSTATIC