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