summaryrefslogtreecommitdiffstats
path: root/tests/004-annotations/src/android/test/anno/MissingAnnotation.java
blob: 56da15a25263e1658e89aba5fb8a16cfc5e03eb5 (plain)
1
2
3
4
5
6
7
8
package android.test.anno;

import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Retention(RUNTIME) public @interface MissingAnnotation {
}