mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
21 lines
330 B
Plaintext
21 lines
330 B
Plaintext
class A {
|
|
private Object b = new Object() {
|
|
static String A;
|
|
|
|
public String toString() {
|
|
return "A";
|
|
}
|
|
|
|
public static void staticMethod() {
|
|
A = "";
|
|
System.out.println(A);
|
|
}
|
|
|
|
static class InnerInner {}
|
|
|
|
static {
|
|
// static initializer
|
|
}
|
|
};
|
|
|
|
} |