Files
kotlin-fork/compiler/testData/loadKotlin/annotations/classes/MultipleAnnotations.txt
T
Alexander Udalov 4aeeafdff0 Deserialize annotations on classes
First version, not all kinds of value arguments of annotations are supported
2013-08-23 17:39:18 +04:00

18 lines
409 B
Plaintext

package test
internal final annotation class A1 : jet.Annotation {
/*primary*/ public constructor A1()
}
internal final annotation class A2 : jet.Annotation {
/*primary*/ public constructor A2()
}
internal final annotation class A3 : jet.Annotation {
/*primary*/ public constructor A3()
}
test.A1() test.A2() test.A3() internal final class Class {
/*primary*/ public constructor Class()
}