blob: 68a9f0126a3261128faea6f95534db7adad89786 [file]
public class pr11951
{
public static Object dosomething()
{
throw new Error();
}
public static native void nmethod();
public static void main(String[] args)
{
nmethod();
}
}