blob: 4208cb8ace96332bcfca7c908b4c1b29a9e899a2 [file] [log] [blame]
class Test {
void bar(A a){
a.foo();
}
class A {
void f<caret>oo(){int i = 0;}
}
}