aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs198/github_105/BarAnnotation.java
blob: eaee4af2a207e45363dfe86b2394c01ee051b2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
public @interface BarAnnotation {
  // Note: no default value
  String name();
}