blob: d7217a3cdf98678d1f9defa5f7ba9782ff00d76a [file] [log] [blame]
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();
}