mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
Fixes IDEA-336370 Autocompletion should be smarter for annotations GitOrigin-RevId: aa6efeb2b35f6ea242ed43cc1cb05aeceefe6d5c
9 lines
116 B
Java
9 lines
116 B
Java
@interface Anno {
|
|
boolean attr() default true;
|
|
int existing();
|
|
}
|
|
|
|
@Anno(att<caret>existing = 2)
|
|
class Cls {
|
|
|
|
} |