blob: dfee484cee02d229c4b6923a5f907a487dd87b04 [file] [log] [blame]
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();
}
}
}