mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
209 B
Kotlin
Vendored
13 lines
209 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
inline class UInt(private val data: Int)
|
|
|
|
fun f() {
|
|
val unull = UInt(1) ?: null
|
|
}
|
|
|
|
// 0 INVOKESTATIC UInt\$Erased.box
|
|
// 0 INVOKEVIRTUAL UInt.unbox
|
|
|
|
// 0 valueOf
|
|
// 0 intValue |