aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs199/github_128/MarkerB.java
blob: 6f6aa3dd098c297c73e4c5a61734ef35d4fca1e6 (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 MarkerB {}