Name: mc57594 Date: 06/04/97
The enclosed file, attempting to load a native library, trapping the
exception, in a class initializer, generates a compiler message ("please
file a bug report") in JDK 1.1.2D.
Removing the exception handler allows it to compile.
public class TestBug
{
// note whether native library has already been loaded
private static boolean isLibLoaded = false;
{
try {
System.loadLibrary("SomeLib");
isLibLoaded = true;
}
catch (UnsatisfiedLinkError e) {
System.err.println("Unable to load native library");
}
}
public TestBug() {
}
}
======================================================================
- duplicates
-
JDK-4031754 compiler crashes on try within static initializer
-
- Closed
-