Home | History | Annotate | Download | only in anno
      1 package android.test.anno;
      2 
      3 import java.lang.annotation.*;
      4 
      5 public class ClassWithInnerAnnotationClass {
      6   @Retention(RetentionPolicy.SOURCE)
      7   public @interface MissingInnerAnnotationClass {}
      8 }
      9