mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
16 lines
279 B
Java
16 lines
279 B
Java
class C {
|
|
void foo(String s, StringBuilder b) {
|
|
b.append("repeated");
|
|
b.append("repeated");
|
|
b.append(s);
|
|
b.append("repeated");
|
|
|
|
<selection>
|
|
b.append("a");
|
|
b.append("b");
|
|
b.append("b");
|
|
b.append("c");
|
|
</selection>
|
|
b.append("d");
|
|
}
|
|
} |