blob: a5c89e6b3cb64b7aee635d0988e81754ad625733 [file] [log] [blame]
/**
* An Annotation can contain components besides the methods declaring the annotation arguments, e.g.
* classes and fields.
*/
@interface Anno {
class Inner {}
int con = 5;
int value();
}
class Use {
@Anno(0)
Object o;
}