Files
2024-04-01 10:52:18 +00:00

11 lines
158 B
Java

// "Create @interface method 'test()'" "true"
public class Test {
@Attr(test= {""})
public Test() {
}
}
@interface Attr {
String[] test();
}