mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
25 lines
340 B
Java
25 lines
340 B
Java
public class C {
|
|
void second() {
|
|
newMethod(0, 1);
|
|
}
|
|
|
|
private void newMethod(int i, int i2) {
|
|
test(i);
|
|
test(i2);
|
|
}
|
|
|
|
void none() {
|
|
newMethod(0, 0);
|
|
}
|
|
|
|
void both() {
|
|
newMethod(1, 1);
|
|
}
|
|
|
|
void first() {
|
|
newMethod(1, 0);
|
|
}
|
|
|
|
private void test(int i) {}
|
|
}
|