mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
12 lines
199 B
Java
12 lines
199 B
Java
class A {
|
|
private Object b = new Inner();
|
|
|
|
private class <caret>Inner {
|
|
private int i=0;
|
|
|
|
public String toString() {
|
|
i++;
|
|
return "A";
|
|
}
|
|
}
|
|
} |