1 package test;2 3 public class Test {4 5 public int field = hashCode() / 10;6 public static int staticField = 10;7 public Number num = ((Number )hashCode()).intValue();8 public boolean b = num instanceof Integer ;9 10 }