blob: 3cc9dcc2067487d6c0c176b269a7338e1b5c8847 [file]
// IGNORE_BACKEND_FIR: JVM_IR
data class A(val x: Int, val y: String)
fun box(): String {
val a = A(42, "OK")
return if (a.component1() == 42) a.component2() else a.component1().toString()
}