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

@Retention(RetentionPolicy.RUNTIME)
public @interface IntAnnotation {
    int value();
}