blob: 31e6a41faab6d48630772dd4b2a2691b5b854c5e [file] [log] [blame]
package annotations.tests.classfile.foo;
import java.lang.annotation.*;
// @Retention(RetentionPolicy.CLASS)
@Retention(RetentionPolicy.RUNTIME)
@java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE_USE)
public @interface C {
int fieldA();
String fieldB();
}