mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 21:55:38 +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";
|
|
}
|
|
}
|