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