mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
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;
|
|
}
|
|
} |