mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
265 B
Java
15 lines
265 B
Java
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());
|
|
}
|
|
} |