mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
16 lines
239 B
Java
16 lines
239 B
Java
class Test {
|
|
public int i;
|
|
|
|
public int getI() { return i; }
|
|
|
|
int method(int a) {
|
|
return <selection>a + i</selection>;
|
|
}
|
|
}
|
|
|
|
class XXX {
|
|
public int m() {
|
|
Test t;
|
|
return t.method(1);
|
|
}
|
|
} |