aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr197719/test/aspects/MyAnn.java
blob: 6610201b8561d1c2214da8c7d6650e4302240862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test.aspects;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MyAnn {
}