blob: 432d05cc81817d42619de68dbd7219b3191e421e [file] [log] [blame]
public class A {
void f<caret>oo(B b) {
b.foo("");
if (false) {
foo(b);
}
}
}
class B {
void foo(String s) {
System.out.println(s);
}
}