blob: 20fa8224d5c49de8c38ace9a3fc00ac582145faf [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 G {
int fieldA();
String fieldB();
boolean[] fieldC();
/*@D(fieldA=1, fieldB="value from annotation @G", fieldC={3,2})*/ int fieldD();
/*@D(fieldA=2,fieldB="value from annotation @G",fieldC={3,2})*/ int fieldE();
}