Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/collapseIntoLoop/afterTwoIterations.java
T
2020-06-17 07:41:38 +03:00

8 lines
143 B
Java

// "Collapse into loop" "true"
class X {
void test() {
for (int i : new int[]{12, 17}) {
System.out.println(i);
}
}
}