mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
15 lines
267 B
Java
15 lines
267 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("bazz");
|
|
System.out.println(x);
|
|
}
|
|
} |