Add another test for KT-49715 and fix JS IR behavior

#KT-49715
 #KT-51798 Fixed
This commit is contained in:
Alexander Udalov
2022-04-01 22:46:13 +02:00
committed by Alexander Udalov
parent 24105139ea
commit df86290083
10 changed files with 67 additions and 2 deletions
@@ -0,0 +1,17 @@
// IGNORE_BACKEND_FIR: JVM_IR
// FIR status: [IR VALIDATION] Duplicate IR node: FUN GENERATED_DATA_CLASS_MEMBER name:equals
interface A {
fun Any.equals(other: Any?): Boolean = false
fun Any.hashCode(): Int = 0
fun Any.toString(): String = ""
}
data class B(val x: Int) : A
fun box(): String {
if (B(42) != B(42)) return "Fail equals"
if (B(42).hashCode() != B(42).hashCode()) return "Fail hashCode"
if (B(42).toString() != B(42).toString()) return "Fail toString"
return "OK"
}