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