mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
20 lines
257 B
Java
20 lines
257 B
Java
|
|
class A<T> {
|
|
class B {
|
|
private String foo;
|
|
|
|
public void run() {
|
|
new B() {
|
|
@Override
|
|
public void run() {
|
|
moo(A.this);
|
|
}
|
|
};
|
|
}
|
|
|
|
void m<caret>oo(A a) {
|
|
System.out.println(foo);
|
|
}
|
|
}
|
|
|
|
} |