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