Files
kotlin-fork/compiler/testData/codegen/bytecodeText/constants/inlineUnsignedIntConstant.kt
T
Andrey Zinovyev 3572a96bb9 [FIR] Lookup in local sources in default imports based on the flag
Reuse ALLOW_KOTLIN_PACKAGE for that
2021-06-08 08:23:25 +00:00

20 lines
244 B
Kotlin
Vendored

// !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