summaryrefslogtreecommitdiff
path: root/test/files/neg/t3236-neg/ShortAnnotation.java
blob: f0a35892c7508da09f76b0761ce72b65fe6fed16 (plain) (blame)
1
2
3
4
5
6
7
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.RUNTIME)
public @interface ShortAnnotation {
    short value();
}