class Test { Test(String s){ } void foo() { Test s = new Test(""); s.bar(); } void bar() {} }