Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/unwrapArrayInitializerMemberValue/beforeEmptyArray.java
Andrey.Cherkasov 430ad9a42a [java-highlighting] IDEA-216120 Provide fix for the "Illegal initializer for ..." error
GitOrigin-RevId: edf4f5e72243afe44f0bcbbacd2e753a2e5faf1e
2021-03-12 10:42:19 +00:00

10 lines
172 B
Java

// "Replace array initializer with its element" "false"
class X {
@interface MyAnnotation {
String value();
}
@MyAnnotation(value = {}<caret>)
void foo() {}
}