mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-25 03:11:25 +07:00
16 lines
226 B
Java
16 lines
226 B
Java
public class Test {
|
|
{
|
|
int x = 0;
|
|
|
|
|
|
newMethod(x, x + 1);
|
|
|
|
|
|
newMethod(x, x + 2);
|
|
}
|
|
|
|
private void newMethod(int p, int i) {
|
|
System.out.println(p);
|
|
System.out.println(i);
|
|
}
|
|
} |