A method that is native is never defined as abstract. "native" is supplying the implementation. It is telling you that the implementation is in a native library.
You will actually get a runtime error because no main method is provided...
Ignoring that, you will get:
java.lang.UnsatisfiedLinkError: someMethod
at One_impl.someMethod(Native Method)
at One_impl.main(One_impl.java:10)
Exception in
thread "main"