blob: 485c8afecedc3d261c6e5e1087cdda56b5ba6eaa [file] [log] [blame]
class Test {
int method(int a, int b) {
return <selection>anotherMethod(a + b)</selection>;
}
int i;
int anotherMethod(int x) {
return x;
}
}