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