blob: 085c98df35324a587b4c2b6b3d41369470e95945 [file] [log] [blame]
package test.tmp;
import org.testng.annotations.Test;
@Test
public class StaticInitializerTest {
static {
foo();
}
public void testMe() {
System.err.println("**** testMe ****");
}
private static void foo() {
throw new RuntimeException("FAILING");
}
}