blob: 54b1be205cf2309e11753dc42b27f9b8619fe752 [file] [log] [blame]
class C
{
public C()
{
}
public native void printName();
static {
try {
System.loadLibrary("B");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
}