mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
16 lines
221 B
Plaintext
16 lines
221 B
Plaintext
class Test {
|
|
int i;
|
|
void run() {}
|
|
|
|
Test getDelegate() {
|
|
return new Test() {
|
|
int i;
|
|
|
|
@Override
|
|
void run() {
|
|
System.out.println(Test.this.i);
|
|
Test.this.run();
|
|
}
|
|
};
|
|
}
|
|
} |