summaryrefslogtreecommitdiff
path: root/test/pending/run/t4713/JavaAnnots.java
blob: 29541b1ee0ce3f0ba454270725747493ef296e1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.util.List;

public abstract class JavaAnnots {
  @Retention(RetentionPolicy.RUNTIME)
  @Target(ElementType.FIELD)
  public @interface Book {
  }

  public static final List<String> Book = null;
}