aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs163/pr256669/SomeAnnotation.java
blob: e12cde1c76b7ba4b415390298c584b564f7378d9 (plain)
1
2
3
4
5
6
7
import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
public @interface SomeAnnotation {
        String value() default "";
}