mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 12:10:37 +07:00
GitOrigin-RevId: 2b00ccc0466cc643ca6bd9c40fcc974b82d2fed8
12 lines
210 B
Java
12 lines
210 B
Java
class Test {
|
|
int local = 42;
|
|
static int global = 42;
|
|
|
|
void test(){
|
|
newMethod(local);
|
|
}
|
|
|
|
private static void newMethod(int local) {
|
|
System.out.println(local + global);
|
|
}
|
|
} |