blob: 6adc318926acc44fc5c44de20e17f2d31e8b2907 [file] [log] [blame]
class Test {
public static final Object FOO = new Test().foo;
private final String foo;
private Test() {
foo = "some text";
}
}