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