Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/stringConcatInLoop/beforeParameter.java
2017-02-02 14:29:02 +03:00

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);
}
}