mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-18 20:17:53 +07:00
9 lines
120 B
Java
9 lines
120 B
Java
class Test {
|
|
void foo(Integer integer) {
|
|
integer.intValue() + 1;
|
|
}
|
|
|
|
void bar(){
|
|
foo(new Integer(1));
|
|
}
|
|
} |