Files
kotlin-fork/compiler/testData/codegen/box/reflection/call/valueClasses/nonOverridingFunOfMfvc.kt
T
Evgeniy.Zhelenskiy 88f293d4a9 [IR] Support reflection for MFVC
Signed-off-by: Evgeniy.Zhelenskiy <Evgeniy.Zhelenskiy@jetbrains.com>

#KT-1179
2023-03-07 21:44:43 +00:00

38 lines
1020 B
Kotlin
Vendored

// TARGET_BACKEND: JVM_IR
// WITH_REFLECT
// LANGUAGE: +ValueClasses
import kotlin.test.assertEquals
@JvmInline
value class Z(val x1: UInt, val x2: Int) {
fun test(a: Int, b: Z, c: Z?) = "$x1$x2$a${b.x1}${b.x2}${c!!.x1}${c!!.x2}"
}
@JvmInline
value class S(val x1: String, val x2: String) {
fun test(a: Int, b: Z, c: Z?) = "$x1$x2$a${b.x1}${b.x2}${c!!.x1}${c!!.x2}"
}
@JvmInline
value class A(val x1: Any, val x2: Any) {
fun test(a: Int, b: Z, c: Z?) = "$x1$x2$a${b.x1}${b.x2}${c!!.x1}${c!!.x2}"
}
fun box(): String {
val two = Z(2U, 3)
val four = Z(4U, 5)
val expected = "0912345"
assertEquals(expected, Z::test.call(Z(0U, 9), 1, two, four))
assertEquals(expected, Z(0U, 9)::test.call(1, two, four))
assertEquals(expected, S::test.call(S("0", "9"), 1, two, four))
assertEquals(expected, S("0", "9")::test.call(1, two, four))
assertEquals(expected, A::test.call(A(0U, 9), 1, two, four))
assertEquals(expected, A(0U, 9)::test.call(1, two, four))
return "OK"
}