Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/annotations/classes/EnumArgument.kt
T
2013-12-17 20:28:59 +04:00

14 lines
282 B
Kotlin

package test
import java.lang.annotation.ElementType
annotation class Anno(t: ElementType)
Anno(ElementType.METHOD) class Class {
Anno(ElementType.PARAMETER) inner class Inner
Anno(ElementType.TYPE) class Nested
Anno(ElementType.ANNOTATION_TYPE) class object
}