mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +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);
|
|
}
|
|
} |