mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 05:18:02 +07:00
GitOrigin-RevId: 44e5d0383d30e5cfbafe61d18d1d16ba5cbfd8b7
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;
|
|
}
|
|
} |