blob: 6fdedff3f1f83642d4282c479b1bc100c2444992 [file] [log] [blame]
public class A {
void test(String <caret>s) {
System.out.println(s);
}
void callTest() {
test(myMethod());
}
String myMethod() {
return "";
}
}