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

@Retention(RetentionPolicy.RUNTIME)
public @interface CharAnnotation {
    char value();
}