[IR] Add more tests for inline/value classes secondary constructors

Signed-off-by: Evgeniy.Zhelenskiy <Evgeniy.Zhelenskiy@jetbrains.com>

#KT-55333
This commit is contained in:
Evgeniy.Zhelenskiy
2023-04-12 00:59:14 +02:00
committed by Space Team
parent f75b72990e
commit 8c748bfea4
52 changed files with 909 additions and 31 deletions
@@ -0,0 +1,36 @@
// WITH_STDLIB
// WITH_REFLECT
// LANGUAGE: +ValueClasses
// TARGET_BACKEND: JVM_IR
// WORKS_WHEN_VALUE_CLASS
// LANGUAGE: +ValueClasses
import kotlin.reflect.KVisibility
OPTIONAL_JVM_INLINE_ANNOTATION
value class Z(val x: Int, val y: Int) {
public constructor() : this(0)
internal constructor(x: Long): this(x.toInt())
private constructor(x: Int): this(x, -x)
}
fun box(): String {
val z1 = Z(111, 222)
if (z1.x != 111) throw AssertionError()
if (z1.y != 222) throw AssertionError()
val z2 = Z()
if (z2.x != 0) throw AssertionError()
if (z2.y != 0) throw AssertionError()
val z3 = Z(2222L)
if (z3.x != 2222) throw AssertionError()
if (z3.y != -2222) throw AssertionError()
val constructors = Z::class.constructors
require(constructors.map { it.visibility!! }.sorted() == listOf(KVisibility.PUBLIC, KVisibility.PUBLIC, KVisibility.INTERNAL, KVisibility.PRIVATE).sorted()) {
constructors.map { it.visibility }.toString()
}
return "OK"
}