mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
20 lines
245 B
Plaintext
20 lines
245 B
Plaintext
class Utilz {
|
|
static int func(){
|
|
return 1;
|
|
}
|
|
|
|
static int foo1(){
|
|
return foo2();
|
|
}
|
|
|
|
static int foo2(){
|
|
return 2*func();
|
|
}
|
|
|
|
}
|
|
|
|
class Something {
|
|
Something(){
|
|
int x = Utilz.foo2();
|
|
}
|
|
} |