blob: a2a96367052f563a7895d6827a896cd81489005c [file] [log] [blame]
class Test {
int method(int a, int b) {
return <selection>i</selection>;
}
int i;
}
class XTest {
int n() {
Test t;
return t.method(1, 2);
}
}