// Regression test for JNI and static initializers.publicclassinit{publicstaticclassNativeClass{static{System.out.println("static initializer 2");System.loadLibrary("init");// if it's here, this app doesn't work}publicstaticnativevoidprintHello();}static{System.out.println("static initializer 1");}publicstaticvoidmain(String[]args){//System.loadLibrary("test"); // if it's here, this app worksNativeClass.printHello();}}