mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 04:44:53 +07:00
GitOrigin-RevId: 387a7fe6e41da1f967b05dfa7da246e70e02b30f
14 lines
162 B
Plaintext
14 lines
162 B
Plaintext
class Foreign {
|
|
void foo (Test test) {
|
|
test.field++;
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
int field;
|
|
|
|
void bar () {
|
|
new Foreign().foo(this);
|
|
}
|
|
}
|