Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/constExpressionsInAnnotationArguments.kt.txt
T
2020-11-26 00:14:03 +03:00

24 lines
201 B
Plaintext
Vendored

const val ONE: Int
field = 1
get
annotation class A : Annotation {
constructor(x: Int) /* primary */
val x: Int
field = x
get
}
@A(...)
fun test1() {
}
@A(...)
fun test2() {
}