package annotations.tests.classfile.foo; | |
import java.lang.annotation.*; | |
@Retention(RetentionPolicy.RUNTIME) | |
@java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE_USE) | |
public @interface D { | |
int fieldA(); | |
String fieldB(); | |
int[] fieldC(); | |
} |