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

@Retention(RetentionPolicy.RUNTIME)
public @interface DoubleAnnotation {
    double value();
}