class Test{ void foo(int i){ i++; } void bar(Test t){ t.foo(1); } }