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