mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 13:55:00 +07:00
GitOrigin-RevId: 7f72c5f68ab821e728eb0d5152f0910f48035046
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();
|
|
}
|
|
|
|
} |