class Test { static int bar(){return 1;} void foo() { Test s = new Test(); s.bar(); } }