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