Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/stringConcatInLoop/beforeParameter.java
T

10 lines
217 B
Java

// "Introduce new StringBuilder to update variable 's'" "true"
public class Main {
void test(String s) {
for(int i=0; i<10; i++) {
s+<caret>=i;
}
System.out.println(s);
}
}