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