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