blob: 1a291f0b46ce322b355ed2d4144916c9673588eb [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 "";
}