be08e33463
To fix this case in an upcoming test which adds retention(runtime) to all annotations (which resulted in duplicate annotation here)
15 lines
286 B
Java
Vendored
15 lines
286 B
Java
Vendored
package test;
|
|
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
public interface EnumInParam {
|
|
public @interface MyRetention {
|
|
RetentionPolicy value();
|
|
}
|
|
|
|
@MyRetention(RetentionPolicy.RUNTIME)
|
|
public @interface RetentionAnnotation {
|
|
String value();
|
|
}
|
|
}
|