blob: ce3ab37ccd9ad3104c977ce2225ccca277fa29aa [file] [log] [blame]
class Test{
void fo<caret>o(int i){
i++;
}
void bar(Test t){
t.foo(1);
}
}