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