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