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: }