13 lines
211 B
Plaintext
Vendored
13 lines
211 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
|
|
|
|
}
|
|
|