blob: 24079f1898899b6d0d781694250bd77f602174d7 [file] [log] [blame]
class Test {
public 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);
}
}