Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/collapseIntoLoop/afterIrregularNumber.java
T
2020-06-10 09:38:24 +03:00

8 lines
150 B
Java

// "Collapse into loop" "true"
class X {
void test() {
for (int i : new int[]{1, 2, 3, 5, 8}) {
System.out.println(i);
}
}
}