pr11951.java 251 B

12345678910111213141516171819
  1. public class pr11951
  2. {
  3. public static Object dosomething()
  4. {
  5. throw new Error();
  6. }
  7. public static native void nmethod();
  8. public static void main(String[] args)
  9. {
  10. nmethod();
  11. }
  12. static {
  13. System.loadLibrary("pr11951");
  14. }
  15. }