mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
15 lines
239 B
Java
15 lines
239 B
Java
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);
|
|
}
|
|
} |