blob: 425c99d8821fea992228eaec0f1c8bdf6f9a538f [file] [log] [blame]
class Test {
int i;
public int getI() { return i; }
int method(int a) {
return <selection>a + i</selection>;
}
}
class XXX {
public int m() {
Test t;
return t.method(1);
}
}