Files
kotlin/compiler/testData/codegen/bytecodeText/constants/inlineUnsignedIntConstant.kt
2019-06-13 12:25:06 +02:00

19 lines
220 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
// 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