Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/collapseIntoLoop/afterCaretWithStatementWithErrorsInTheEnd.java
T
2024-10-23 12:16:29 +00:00

11 lines
191 B
Java

// "Collapse into loop" "true-preview"
class A {
String getPath() {
Integer i = 0;
for (int j = 1; j < 4; j++) {
i = j;
}
i = ;
return i.toString()
}
}