8c748bfea4
Signed-off-by: Evgeniy.Zhelenskiy <Evgeniy.Zhelenskiy@jetbrains.com> #KT-55333
26 lines
685 B
Kotlin
Vendored
26 lines
685 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// WORKS_WHEN_VALUE_CLASS
|
|
// TARGET_BACKEND: JVM_IR
|
|
// LANGUAGE: +ValueClasses, +GenericInlineClassParameter
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class Z<T: Int>(val x: T, val y: T) {
|
|
constructor(vararg ys: Long) : this(ys.size as T, -ys.size as T)
|
|
}
|
|
|
|
fun box(): String {
|
|
// val z1 = Z<Int>(111, 222) OVERLOAD_RESOLUTION_AMBIGUITY
|
|
// if (z1.x != 111) throw AssertionError()
|
|
// if (z1.y != 222) throw AssertionError()
|
|
|
|
val z2 = Z<Int>()
|
|
if (z2.x != 0) throw AssertionError()
|
|
if (z2.y != 0) throw AssertionError()
|
|
|
|
val z3 = Z<Int>(2222L)
|
|
if (z3.x != 1) throw AssertionError()
|
|
if (z3.y != -1) throw AssertionError()
|
|
|
|
return "OK"
|
|
}
|