Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/iterateOver/beforeNewArray.java
Tagir Valeev a9069f60e8 [java-intentions] IterateOverIterable: disable for empty lists and newly-created arrays (IJ-CR-8575)
GitOrigin-RevId: 78ef76ab85b1e051d0bb887801379136be041c5b
2021-05-11 12:00:19 +00:00

6 lines
91 B
Java

// "Disable 'Iterate'" "false"
class Test {
void foo() {
new String<caret>[10];
}
}