[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
@@ -1,27 +1,27 @@
open annotation class TestAnnWithIntArray : Annotation {
val x: IntArray
field = x
get
constructor(x: IntArray) /* primary */ {
super/*Any*/()
/* <init>() */
}
val x: IntArray
field = x
get
}
open annotation class TestAnnWithStringArray : Annotation {
val x: Array<String>
field = x
get
constructor(x: Array<String>) /* primary */ {
super/*Any*/()
/* <init>() */
}
val x: Array<String>
field = x
get
}
@TestAnnWithIntArray(x = [1, 2, 3])
@@ -33,3 +33,4 @@ fun test1() {
@TestAnnWithStringArray(x = ["d", "e", "f"])
fun test2() {
}