mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 11:44:39 +07:00
GitOrigin-RevId: 3aae5c738d48c38144f6a78c36738121831ae5a5
19 lines
254 B
Java
19 lines
254 B
Java
public class C {
|
|
void second() {
|
|
<selection> test(0);
|
|
test(1);</selection>
|
|
}
|
|
|
|
void none() {
|
|
test(0);
|
|
test(0);
|
|
}
|
|
|
|
void both() {
|
|
test(1);
|
|
test(1);
|
|
}
|
|
|
|
private void test(int i) {}
|
|
}
|