2003-08-18 16:35:34 +02:00
|
|
|
public class pr11951
|
|
|
|
{
|
|
|
|
public static Object dosomething()
|
|
|
|
{
|
|
|
|
throw new Error();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static native void nmethod();
|
|
|
|
|
|
|
|
public static void main(String[] args)
|
|
|
|
{
|
|
|
|
nmethod();
|
|
|
|
}
|
2004-05-05 22:58:54 +02:00
|
|
|
|
|
|
|
static {
|
|
|
|
System.loadLibrary("pr11951");
|
|
|
|
}
|
2003-08-18 16:35:34 +02:00
|
|
|
}
|