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