class Test { void bar() { foo(); } void foo() { String s = ""; System.out.println(s); System.out.println(s); } }