Files
kotlin/compiler/testData/codegen/bytecodeText/constants/inlineUnsignedIntConstant.kt
Mikhail Zarechenskiy 656f6cbded Support constant evaluation of unsigned type constructors
#KT-23816 In Progress
2018-06-04 18:37:34 +03: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