blob: 8ea70f469584564977e446917af390a4ed65596a [file] [log] [blame]
package test0003;
@interface Name {
String first();
String last();
}
@interface Author {
Name value();
}
public @Author(@Name(first="Joe", last="Hacker"))
class X {}