class Test {
       
	   static {
        b = 1;
        Integer a = b; // Illegal forward reference
    }
 
    public static void main(String[] args) {}
}