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

@Retention(RetentionPolicy.RUNTIME)
public @interface LongAnnotation {
    long value();
}