blob: be4dd2d8017afca6703099f23a5c646386a89ce7 [file] [log] [blame]
package bug;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
@Retention(RUNTIME) @Target({PACKAGE})
public @interface Ann {
String namespace() default "";
}