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