blob: c47ae37618df3a5ad7f926e743fe662c0e3584bc [file] [log] [blame]
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);
}
}