Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
ArrayOfEnumInParam.java
blob: dca74c34642fc77e8196e78c915b6bd91552ec9d [
file
] [
log
] [
blame
]
package
test
;
import
java
.
lang
.
annotation
.
ElementType
;
import
java
.
lang
.
annotation
.
Target
;
public
interface
ArrayOfEnumInParam
{
@Target
({
ElementType
.
FIELD
,
ElementType
.
CONSTRUCTOR
})
public
@interface
targetAnnotation
{
String
value
();
}
}