mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 14:36:58 +07:00
12 lines
159 B
Java
12 lines
159 B
Java
class Test {
|
|
void bar() {
|
|
foo(1);
|
|
}
|
|
|
|
void foo(int i) {
|
|
<selection>
|
|
System.out.println(i);
|
|
System.out.println(i);
|
|
</selection>
|
|
}
|
|
} |