mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
10 lines
172 B
Java
10 lines
172 B
Java
// "Replace array initializer with its element" "false"
|
|
class X {
|
|
|
|
@interface MyAnnotation {
|
|
String value();
|
|
}
|
|
|
|
@MyAnnotation(value = {}<caret>)
|
|
void foo() {}
|
|
} |