Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/fileAnnotations.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

12 lines
209 B
Plaintext
Vendored

@file:A(x = "File annotation")
package test
@Target(allowedTargets = [AnnotationTarget.FILE])
annotation class A : Annotation {
constructor(x: String) /* primary */
val x: String
field = x
get
}