mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
18 lines
279 B
Java
18 lines
279 B
Java
class Test {
|
|
int method(int a, int b, int anObject) {
|
|
return anObject;
|
|
}
|
|
int i;
|
|
|
|
int anotherMethod(int x) {
|
|
return x;
|
|
}
|
|
}
|
|
|
|
class XTest {
|
|
int n() {
|
|
Test t;
|
|
|
|
return t.method(1, 2, t.anotherMethod(1 + 2));
|
|
}
|
|
} |