CMake Nightly Date Stamp
[kiteware-cmake.git] / Tests / JavaNativeHeaders / D.java
blob449c0df2de9009e431d83b88f6c540be7f57ca80
1 class D
3 public D()
7 public native void printName();
9 static {
10 try {
12 System.loadLibrary("D");
14 } catch (UnsatisfiedLinkError e) {
15 System.err.println("Native code library failed to load.\n" + e);
16 System.exit(1);