blob: 005259e85d765102c387aea2079f677ac370f74d [file] [log] [blame]
class Outer {
static class Inner {
Object x;
private Outer anObject;
public Inner(Outer anObject) {
this.anObject = anObject;
this.x = anObject.getClass();
}
}
}