summaryrefslogtreecommitdiff
path: root/test/files/pos/t5165/TestAnnotation.java
blob: 90886b7537eee78bf09b0f31d18dcff6fe513566 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
public @interface TestAnnotation {
  public enum TestEnumOne { A, B }
  public enum TestEnumTwo { C, D }

  public TestEnumOne one();
  public TestEnumTwo two();
  public String strVal();
}