mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
19 lines
333 B
Plaintext
19 lines
333 B
Plaintext
import java.io;
|
|
|
|
class A {
|
|
public void test() {
|
|
Object i = new Object() {
|
|
public class A {
|
|
}
|
|
|
|
private A myA = new A();
|
|
|
|
public String toString() {
|
|
A a = new A();
|
|
return a.toString();
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|