Retro68/gcc/libjava/testsuite/libjava.jni/pr11951.java

19 lines
251 B
Java
Raw Normal View History

2012-03-27 23:13:14 +00:00
public class pr11951
{
public static Object dosomething()
{
throw new Error();
}
public static native void nmethod();
public static void main(String[] args)
{
nmethod();
}
static {
System.loadLibrary("pr11951");
}
}