Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/packageMembers/EnumArrayArgument.kt
Yan Zhulanow 2ce9903356 Fix tests
2015-08-31 15:33:13 +03:00

13 lines
249 B
Kotlin
Vendored

//ALLOW_AST_ACCESS
package test
import java.lang.annotation.ElementType
annotation class Anno(vararg val t: ElementType)
Anno(ElementType.METHOD, ElementType.FIELD) fun foo() {}
@field:Anno(ElementType.PACKAGE) val bar = 42
Anno() fun baz() {}