01: package test;
02:
03: public class Test {
04:
05: public int field = hashCode() / 10;
06: public static int staticField = 10;
07: public Number num = ((Number) hashCode()).intValue();
08: public boolean b = num instanceof Integer;
09:
10: static {
11: int i = field;
12: }
13:
14: {
15: boolean b1 = b;
16: }
17: }
|