blob: 2cdae544482e6f1a1908e03fb115d4162ee5c23a [file] [log] [blame]
class X {
void m() {
int foo = 10;
m2(fo<caret>o);
}
void m2(int i) {
}
}