[IR] update testdata after rebase

This commit is contained in:
Zalim Bashorov
2020-11-05 23:27:19 +03:00
committed by teamcityserver
parent 1c6c996084
commit 3b1a6389ab
14 changed files with 120 additions and 74 deletions
@@ -36,7 +36,9 @@ data class A {
}
override fun hashCode(): Int {
return #x.hashCode().times(other = 31).plus(other = #y.hashCode())
var result: Int = #x.hashCode()
result = result.times(other = 31).plus(other = #y.hashCode())
return result
}
override operator fun equals(other: Any?): Boolean {