summaryrefslogtreecommitdiff
path: root/test/files/pos/t5165b/TestAnnotation_1.java
blob: 02eb3f9d4c86e0a9ec9346cd1f1196cf9c301761 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import java.lang.annotation.*;

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

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