mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 05:50:53 +07:00
16 lines
294 B
Java
16 lines
294 B
Java
// "Add missing annotation parameters - value4, value1" "true-preview"
|
|
class Test {
|
|
|
|
@MyAnnotation(value4 = {}, value3 = "", value2 = "", value1 = {})
|
|
void m() {
|
|
|
|
}
|
|
|
|
@interface MyAnnotation {
|
|
String[] value4();
|
|
String value3();
|
|
String value2();
|
|
String[] value1();
|
|
}
|
|
|
|
} |