Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
constants
/
inlineUnsignedIntConstant.kt
blob: 86898f1d6acf5baca14cf747d2a373fd557f9381 [
file
]
// !LANGUAGE: +InlineClasses
// ALLOW_KOTLIN_PACKAGE
// 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