mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
GitOrigin-RevId: 3cac9f65131e216cc2dd43fe58bf0cccbcb69839
19 lines
258 B
Java
19 lines
258 B
Java
class Test {
|
|
void test() {
|
|
int x = getX1();
|
|
System.out.println(x);
|
|
}
|
|
|
|
private static int getX1() {
|
|
int x = 42;
|
|
return x;
|
|
}
|
|
|
|
int getX(){
|
|
return 0;
|
|
}
|
|
|
|
int getAnInt(){
|
|
return 0;
|
|
}
|
|
} |