[IR] dumpKotlinLike: add testdata for FIR tests
This commit is contained in:
committed by
teamcityserver
parent
d7bd4240e1
commit
c68040753d
@@ -0,0 +1,29 @@
|
||||
annotation class Storage : Annotation {
|
||||
constructor(value: String) /* primary */
|
||||
val value: String
|
||||
field = value
|
||||
get
|
||||
|
||||
}
|
||||
|
||||
annotation class State : Annotation {
|
||||
constructor(name: String, storages: Array<Storage>) /* primary */
|
||||
val name: String
|
||||
field = name
|
||||
get
|
||||
|
||||
val storages: Array<Storage>
|
||||
field = storages
|
||||
get
|
||||
|
||||
}
|
||||
|
||||
@State(name = "1", storages = [Storage(value = "HELLO")])
|
||||
class Test {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user