Files
kotlin-fork/compiler/testData/loadJava/compiledJava/annotations/EnumInParam.java
T
Alexander Udalov be08e33463 Minor, change annotation in test data
To fix this case in an upcoming test which adds retention(runtime) to all
annotations (which resulted in duplicate annotation here)
2014-11-11 18:10:43 +03:00

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();
}
}