1 package annotations.toys; 2 3 public @interface FancyAnnotation { 4 int myInt(); 5 6 String left(); 7 8 SimplerAnnotation[] friends(); 9 } 10