mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
12 lines
191 B
Java
12 lines
191 B
Java
// "Collapse repeating annotations" "true-preview"
|
|
|
|
@X<caret>YZ(data = 1)
|
|
@XYZ(data = {2, 3})
|
|
@XYZ(data = {4})
|
|
@XYZ(5)
|
|
class X{}
|
|
@interface XYZ {
|
|
int value() default 0;
|
|
|
|
int[] data();
|
|
} |