blob: 90eecf683dd56ea725ae99d0f7c9c9784bfdd974 [file] [log] [blame]
class ReturnVariable {
String bar(String s) {
s = s + "";
return s;
}
void foo() {
String s1 = "";
s1 = bar(s1);
System.out.println(s1);
}
}