blob: df50368510c531ff3b405184b997eddb2394ef3d [file] [log] [blame]
public class Test {
int method(int i) {
return 0;
}
int m(int i, int j, Test t) {
return i + <selection>t.method(j)</selection>;
}
}
class X {
public int n(int a) {
return (new Test()).m(a, a * 2, new Test());
}
}