All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lambda.tests.LoadOrderTest Maven / Gradle / Ivy

The newest version!
package com.lambda.tests;

public class LoadOrderTest {
    void doNothing(LoadOrderTestSub aParam) {
    }

    public static void main(String argv[]) {
        System.out.println("yes");
        LoadOrderTest t = new LoadOrderTest();
        t.doNothing(null);
        System.out.println("yes");
        // new LoadOrderTestSub();
    }

}

class LoadOrderTestSub {
    static {
        System.out.println("Oh no no no");
        if (true)
            throw new Error("bu");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy