summaryrefslogtreecommitdiffstats
path: root/tests/bugs173/pr407739/MyAnnotation.java
blob: fbe3c25fb7b7267b04e38488d57d9392045389d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;

@Target({METHOD, FIELD})
@Retention(RUNTIME)
public @interface MyAnnotation {
	String dummy1() default "";
	String dummy2() default "";
}