blob: e95fe5b017b563a0ef7a069149d898764ce1cd90 [file] [log] [blame]
public class A {
void test() {
String s = myMethod();
System.out.println(s);
}
void callTest() {
test();
}
String myMethod() {
return "";
}
}