mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
24 lines
314 B
Java
24 lines
314 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);
|
|
}
|
|
|
|
void first() {
|
|
test(1);
|
|
test(0);
|
|
}
|
|
|
|
private void test(int i) {}
|
|
}
|