
com.lambda.tests.LoadOrderTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of LewisOmniscientDebugger Show documentation
Show all versions of LewisOmniscientDebugger Show documentation
A command line utility for accesing the bowler framework.
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