mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 22:20:24 +07:00
f18b4797d9
GitOrigin-RevId: 7e2cd8fca577fce7acc290caa0b9a3c37dcf3e4b
16 lines
286 B
Java
16 lines
286 B
Java
// "Add missing annotation parameters - value4, value1" "true"
|
|
class Test {
|
|
|
|
@MyAnnotation(value4 = {}, value3 = "", value2 = "", value1 = {})
|
|
void m() {
|
|
|
|
}
|
|
|
|
@interface MyAnnotation {
|
|
String[] value4();
|
|
String value3();
|
|
String value2();
|
|
String[] value1();
|
|
}
|
|
|
|
} |