public class Main {
    static {
        if (true) {
            throw new ExceptionInInitializerError("I should see this error");
        }
    }

    public static void main(String[] args) {
    }
}