blob: 04da1050fca7f40d8d5a1ac7b93f13998e2c39a1 [file] [log] [blame]
package test0230;
import java.lang.annotation.Target;
import java.lang.annotation.Retention;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
@Target({TYPE,METHOD})
@Retention(RUNTIME)
public @interface Test {
String value() default "";
}