• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package annotations.tests.classfile.foo;
2 
3 import java.lang.annotation.*;
4 
5 @Retention(RetentionPolicy.RUNTIME)
6 @java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE_USE)
7 public @interface D {
fieldA()8   int fieldA();
fieldB()9   String fieldB();
fieldC()10   int[] fieldC();
11 }
12