summaryrefslogtreecommitdiff
path: root/test/files/run/t3236/StringAnnotation.java
blob: 0fdc1ead3815084a8fec374a7554fd5c41d9c3de (plain) (blame)
1
2
3
4
5
6
7
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.RUNTIME)
public @interface StringAnnotation {
    String value();
}