[Tests] Use stable order for ir/kotlinLike dumps

^KT-65406
This commit is contained in:
Pavel Kunyavskiy
2024-02-05 16:23:41 +01:00
committed by Space Team
parent 0fa42a9c11
commit e6f4d6e6fa
1265 changed files with 43896 additions and 48472 deletions
@@ -28,18 +28,14 @@ operator fun A.get(i: IFoo): Int {
return 1
}
operator fun A.set(i: IFoo, newValue: Int) {
}
operator fun B.get(i: IFoo): Int {
return 1
}
operator fun B.set(i: IFoo2, newValue: Int) {
operator fun A.set(i: IFoo, newValue: Int) {
}
fun withVararg(vararg xs: Int): Int {
return 42
operator fun B.set(i: IFoo2, newValue: Int) {
}
fun test1() {
@@ -108,3 +104,8 @@ fun test6(a: Any) {
tmp_10.set(i = tmp_11 /*as IFoo */, newValue = tmp_10.get(i = tmp_11 /*as IFoo */).plus(other = 1))
}
}
fun withVararg(vararg xs: Int): Int {
return 42
}