mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
21 lines
280 B
Java
21 lines
280 B
Java
class Test8 {
|
|
|
|
void bar() {
|
|
}
|
|
|
|
static class B {
|
|
|
|
int c;
|
|
private Test8 anObject;
|
|
|
|
public B(Test8 anObject) {
|
|
this.anObject = anObject;
|
|
}
|
|
|
|
void foo() {
|
|
c = 10;
|
|
anObject.bar();
|
|
}
|
|
}
|
|
}
|