[Tests] Use stable order for ir/kotlinLike dumps
^KT-65406
This commit is contained in:
committed by
Space Team
parent
0fa42a9c11
commit
e6f4d6e6fa
+9
-8
@@ -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() {
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user