Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/fileAnnotations.kt.txt
T
2021-09-23 06:59:33 +00:00

17 lines
260 B
Kotlin
Vendored

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