mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: c19da1a5cb44a6b7ccf0312e80a356fc653885f0
8 lines
229 B
Java
8 lines
229 B
Java
class InStaticInitializer {
|
|
public static final String helloWorld = "Hello World";
|
|
|
|
static {
|
|
System.out.println(helloWorld);
|
|
}
|
|
//Field must be placed before initializer or illegal forward reference will happen
|
|
} |