public class A { void test(String s1, String <caret>s2) { System.out.println(s1); System.out.println(s2); } void callTest() { String s = ""; String t = s; test(s, t); } }