mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
15 lines
262 B
Java
15 lines
262 B
Java
public class Test {
|
|
{
|
|
int x = 0;
|
|
|
|
newMethod(x, 1, 2);
|
|
|
|
newMethod(x, 3, 4);
|
|
}
|
|
|
|
private void newMethod(int x, int i, int i2) {
|
|
System.out.println(i);
|
|
System.out.println(i2);
|
|
System.out.println(x);
|
|
}
|
|
} |