mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
8 lines
231 B
Java
8 lines
231 B
Java
class InStaticInitializer {
|
|
public static final String hello_world = "Hello World";
|
|
|
|
static {
|
|
System.out.println(hello_world);
|
|
}
|
|
//Field must be placed before initializer or illegal forward reference will happen
|
|
} |