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

@Retention(RetentionPolicy.RUNTIME)
public @interface ByteAnnotation {
    byte value();
}