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

11 lines
162 B
Java

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