mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
13 lines
158 B
Plaintext
13 lines
158 B
Plaintext
class Test {
|
|
void bar() {}
|
|
|
|
public void main() {
|
|
Test1.foo(Test.this);
|
|
}
|
|
}
|
|
|
|
class Test1 {
|
|
static void foo(Test t) {
|
|
t.bar();
|
|
}
|
|
} |