[Tests] Use stable order for ir/kotlinLike dumps
^KT-65406
This commit is contained in:
committed by
Space Team
parent
0fa42a9c11
commit
e6f4d6e6fa
@@ -1,23 +1,4 @@
|
||||
open annotation class Storage : Annotation {
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
val value: String
|
||||
field = value
|
||||
get
|
||||
|
||||
}
|
||||
|
||||
open annotation class State : Annotation {
|
||||
constructor(name: String, storages: Array<Storage>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
val name: String
|
||||
field = name
|
||||
get
|
||||
@@ -26,6 +7,25 @@ open annotation class State : Annotation {
|
||||
field = storages
|
||||
get
|
||||
|
||||
constructor(name: String, storages: Array<Storage>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
open annotation class Storage : Annotation {
|
||||
val value: String
|
||||
field = value
|
||||
get
|
||||
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@State(name = "1", storages = [Storage(value = "HELLO")])
|
||||
@@ -37,3 +37,4 @@ class Test {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user