aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs199/github_128/MarkerA.java
blob: 89e60978c3923c8c3c7a27920a5ef74506691ef4 (plain)
1
2
3
4
5
6
7
8
9
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

@Retention(RUNTIME)
@Target(METHOD)
public @interface MarkerA {}