mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
233 B
Java
16 lines
233 B
Java
class Test {
|
|
public static int i;
|
|
|
|
int method(int a) {
|
|
return <selection>a + i</selection>;
|
|
}
|
|
}
|
|
|
|
class X {
|
|
public static int i;
|
|
|
|
int yyy(int z) {
|
|
Test t;
|
|
return t.method(z);
|
|
}
|
|
} |