This commit is contained in:
Dmitry Jemerov
2009-09-10 21:16:49 +04:00
parent db3e3f17de
commit d13d5f3ac8
21 changed files with 16 additions and 4 deletions
@@ -0,0 +1,8 @@
class InStaticInitializer {
public static final String x = "Hello World";
static {
System.out.println(x);
}
//Field must be placed before initializer or illegal forward reference will happen
}