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