aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr197720/MyAnn.java
blob: ccad57dad2fc561cdf751557613aee56baca46e4 (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 {
}