Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/classes/MultipleAnnotations.txt
2015-10-19 20:45:01 +03:00

18 lines
413 B
Plaintext
Vendored

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