blob: 5df0b9836d0c364400c709af4eba15c490aad72d [file] [log] [blame]
public class A {
void test(String s1) {
String s2 = s1;
System.out.println(s1);
System.out.println(s2);
}
void callTest() {
String s = "";
test(s);
}
}