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