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