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