Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/fileAnnotations.kt.txt
T
2024-02-16 10:19:38 +00:00

18 lines
261 B
Kotlin
Vendored

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