mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
For the inline class: ``` inline class IC(val x: Int) ``` Type (IC..IC?) should be mapped to the wrapper `IC` because it can hold object and also because it does so for primitives #KT-28983 Fixed
19 lines
524 B
Kotlin
Vendored
19 lines
524 B
Kotlin
Vendored
// WITH_REFLECT
|
|
// TARGET_BACKEND: JVM
|
|
// IGNORE_BACKEND: JVM_IR
|
|
|
|
import java.util.concurrent.atomic.AtomicReference
|
|
import java.util.Arrays
|
|
|
|
fun box(): String {
|
|
val a0 = AtomicReference(0.toUByte()).get().javaClass
|
|
val a1 = AtomicReference(0u).get().javaClass
|
|
|
|
val b = Arrays.asList(42u).first().javaClass
|
|
|
|
if (a0.toString() != "class kotlin.UByte") return "Fail 1"
|
|
if (a1.toString() != "class kotlin.UInt") return "Fail 2"
|
|
if (b.toString() != "class kotlin.UInt") return "Fail 3"
|
|
|
|
return "OK"
|
|
} |