Files
openide/java/java-tests/testData/refactoring/introduceField/after1.java
T

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
}