blob: 910777bff6f2d1f29afe2c0d7647bb677ab8f468 [file] [log] [blame]
package foo.bar;
public @interface MyAnnotation {
}
public @interface MyAnnotation2 {
}
public @interface MyAnnotationWithFields {
int field();
}
@MyAnnotation
class CA {
}
@MyAnnotation2
class CB extends CA {
}