mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 21:55:38 +07:00
GitOrigin-RevId: 0cf0aa8d5875e2bc52dfaa96c1259ccb314bbd96
11 lines
177 B
Java
11 lines
177 B
Java
class Test {
|
|
static void test() {
|
|
int x = getX();
|
|
System.out.println(x);
|
|
}
|
|
|
|
private static int getX() {
|
|
int x = 42;
|
|
return x;
|
|
}
|
|
} |