blob: 8a724c88aa5bd1ea1b5574e798058b55f8d9cd2e [file] [log] [blame]
class A {
int f() {
return 0;
}
void m() {
f<caret>();
f();
}
}