mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
20 lines
262 B
Java
20 lines
262 B
Java
class Utilz {
|
|
static int func(){
|
|
return 1;
|
|
}
|
|
|
|
static int foo1(){
|
|
return 2*Utilz.func();
|
|
}
|
|
|
|
static int fo<caret>o2(){
|
|
return 2*func();
|
|
}
|
|
|
|
}
|
|
|
|
class Something {
|
|
Something(){
|
|
int x = 2*Utilz.func();
|
|
}
|
|
} |