656f6cbded
#KT-23816 In Progress
19 lines
220 B
Kotlin
Vendored
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 |