blob: b120c5e90edcad8a334d284b5a3586bcd079fb4c [file] [log] [blame]
package test0231;
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 "";
}