blob: aebe8e7f4851a7f458bfdc208d6b70bd42e29453 [file] [log] [blame]
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();
}
}