mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-15 18:53:43 +07:00
12 lines
209 B
Java
12 lines
209 B
Java
class Outer {
|
|
static class Inner {
|
|
Object x;
|
|
|
|
private Outer anObject;
|
|
|
|
public Inner(Outer anObject) {
|
|
this.anObject = anObject;
|
|
this.x = anObject.getClass();
|
|
}
|
|
}
|
|
} |