mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
9 lines
141 B
Java
9 lines
141 B
Java
class Test {
|
|
void test(){
|
|
System.out.println(1 + newMethod());
|
|
}
|
|
|
|
private int newMethod() {
|
|
return 2 + 3;
|
|
}
|
|
} |