Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/collapseAnnotationsFix/afterOtherParam.java
Tagir Valeev 2ba9a65828 IDEA-167980 Add quick fix to merge two annotations which are not marked as repeatable
GitOrigin-RevId: 6cc5742354b484ea996ec6a0d2bfa29f3013a08a
2019-05-30 12:07:55 +03:00

10 lines
150 B
Java

// "Collapse repeating annotations" "true"
@XYZ(data = {1, 2, 3, 4})
@XYZ(5)
class X{}
@interface XYZ {
int value() default 0;
int[] data();
}