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