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