mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
14 lines
231 B
Java
14 lines
231 B
Java
public class Test {
|
|
{
|
|
int x = 0;
|
|
|
|
newMethod(x, "foo");
|
|
|
|
newMethod(x, "bar");
|
|
}
|
|
|
|
private void newMethod(int x, String foo) {
|
|
System.out.println(foo);
|
|
System.out.println(x);
|
|
}
|
|
} |