Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
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
();
}
}