Files
openide/java/java-tests/testData/codeInsight/completion/normal/AnnotationAttrBeforeExisting.java
Tagir Valeev 000f447107 [java-completion] Insert comma automatically when completing a new annotation attribute
Fixes IDEA-336370 Autocompletion should be smarter for annotations

GitOrigin-RevId: aa6efeb2b35f6ea242ed43cc1cb05aeceefe6d5c
2023-10-27 18:20:12 +00:00

9 lines
102 B
Java

@interface Anno {
String attr();
int existing();
}
@Anno(att<caret>existing = 2)
class Cls {
}