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

@Retention(RetentionPolicy.RUNTIME)
public @interface BooleanAnnotation {
    boolean value();
}