mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-07 11:06:58 +07:00
16 lines
263 B
Java
16 lines
263 B
Java
// "Add missing annotation parameters - value4, value1" "true"
|
|
class Test {
|
|
|
|
@MyAnnotati<caret>on(value2 = "", value3 = "")
|
|
void m() {
|
|
|
|
}
|
|
|
|
@interface MyAnnotation {
|
|
String value4();
|
|
String value3();
|
|
String value2();
|
|
String value1();
|
|
}
|
|
|
|
} |