Files
Anna Kozlova c59dfcedab intentions preview: create annotation method from usage
GitOrigin-RevId: 202cf795eba05296027ab41e034220a9c1a6b678
2022-09-07 13:34:14 +00:00

11 lines
149 B
Java

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