Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
EnumInParam.java
blob: c24a4e80b8e4822cc89cee2452316b1cdd903ade [
file
] [
log
] [
blame
]
package
test
;
import
java
.
lang
.
annotation
.
RetentionPolicy
;
public
interface
EnumInParam
{
public
@interface
MyRetention
{
RetentionPolicy
value
();
}
@MyRetention
(
RetentionPolicy
.
RUNTIME
)
public
@interface
RetentionAnnotation
{
String
value
();
}
}