2006-05-02 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / libjava / testsuite / libjava.jni / pr11951.java
blobe481503ab59165564dc962fa236aa78d45fff331
1 public class pr11951
3 public static Object dosomething()
5 throw new Error();
8 public static native void nmethod();
10 public static void main(String[] args)
12 nmethod();
15 static {
16 System.loadLibrary("pr11951");