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