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