mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
16 lines
290 B
Java
16 lines
290 B
Java
// "Add missing annotation parameters - value4, value1" "true-preview"
|
|
class Test {
|
|
|
|
@MyAnnotation(value2 = "", value3 = "", value4 = "", value1 = "")
|
|
void m() {
|
|
|
|
}
|
|
|
|
@interface MyAnnotation {
|
|
String value4();
|
|
String value3();
|
|
String value2();
|
|
String value1();
|
|
}
|
|
|
|
} |