mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
16 lines
275 B
Java
16 lines
275 B
Java
// "Add missing annotation parameters - value4, value1" "true-preview"
|
|
class Test {
|
|
|
|
@MyAnnotati<caret>on(value3 = "", value2 = "")
|
|
void m() {
|
|
|
|
}
|
|
|
|
@interface MyAnnotation {
|
|
String[] value4();
|
|
String value3();
|
|
String value2();
|
|
String[] value1();
|
|
}
|
|
|
|
} |