blob: 97bdb3dd9e5e0205c30428516a322a17afd0c304 [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 B {
String value();
}