blob: 049c1a446b2026434d555f6a280be3e61c118f17 [file]
// DONT_TARGET_EXACT_BACKEND: JVM
// WITH_STDLIB
fun <T> T.id() = this
const val byteVal: UByte = <!EVALUATED("1")!>1u<!>
const val shortVal: UShort = <!EVALUATED("2")!>2u<!>
const val intVal: UInt = <!EVALUATED("3")!>3u<!>
const val longVal: ULong = <!EVALUATED("4")!>4uL<!>
// STOP_EVALUATION_CHECKS
fun box(): String {
if (byteVal.id() != 1u.toUByte()) return "Fail 1"
if (shortVal.id() != 2u.toUShort()) return "Fail 2"
if (intVal.id() != 3u.toUInt()) return "Fail 3"
if (longVal.id() != 4u.toULong()) return "Fail 4"
return "OK"
}