mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
294 B
Java
16 lines
294 B
Java
public class Test {
|
|
int method(int i) {
|
|
return 0;
|
|
}
|
|
|
|
int m(int i, int j, Test t, int anObject) {
|
|
return i + anObject;
|
|
}
|
|
}
|
|
|
|
class X {
|
|
public int n(int a) {
|
|
final Test t = new Test();
|
|
return (new Test()).m(a, a * 2, t, t.method(a * 2));
|
|
}
|
|
} |