mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
7 lines
181 B
Java
7 lines
181 B
Java
// "Change to 'builder.append(1+1).append(s).append(" ")'" "true-preview"
|
|
class Test {
|
|
String s;
|
|
void bar(StringBuilder builder) {
|
|
buil<caret>der += 1 + 1 + s + " ";
|
|
}
|
|
} |