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