blob: 072b6592bc51037f00c5d34f34082c2d605edde7 [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>;
}
}