mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
10 lines
170 B
Java
10 lines
170 B
Java
class Test {
|
|
void foo () {
|
|
int a = 1;
|
|
newMethod((Object) a);
|
|
}
|
|
|
|
private void newMethod(Object a) {
|
|
System.out.println("" + a);
|
|
}
|
|
} |