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