summaryrefslogtreecommitdiff
path: root/test/files/pos/t9356/MyAnnotation.java
blob: b6c00e7356d487fd75c98006c7d74a230a7ae1f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package annot;

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

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
    Class<?> cls();
}