mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
18 lines
276 B
Java
18 lines
276 B
Java
class Test {
|
|
int method(int a, int b) {
|
|
return <selection>anotherMethod(a + b)</selection>;
|
|
}
|
|
int i;
|
|
|
|
int anotherMethod(int x) {
|
|
return x;
|
|
}
|
|
}
|
|
|
|
class XTest {
|
|
int n() {
|
|
Test t;
|
|
|
|
return t.method(1, 2);
|
|
}
|
|
} |