0 / 60 seg.

What will happen if you try to compile and run the following code?

public class Calculation {
    public static final int NUMBER;
    static {
        NUMBER = 10;
    }
    public static void main(String[] args) {
        System.out.println(Calculation.NUMBER);
    }
}