mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 18:25:37 +07:00
10 lines
168 B
Java
10 lines
168 B
Java
class Test {
|
|
public static final Object FOO = new Test().foo;
|
|
|
|
private final String foo;
|
|
|
|
private Test() {
|
|
foo = "some text";
|
|
}
|
|
}
|