mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
10 lines
225 B
Java
10 lines
225 B
Java
// "Introduce new StringBuilder to update variable 's'" "true-preview"
|
|
|
|
public class Main {
|
|
void test(String s) {
|
|
for(int i=0; i<10; i++) {
|
|
s+<caret>=i;
|
|
}
|
|
System.out.println(s);
|
|
}
|
|
} |