issue29559.java.golden 618 B

1234567891011121314151617181920212223242526
  1. // Code generated by gobind. DO NOT EDIT.
  2. // Java class issue29559.Issue29559 is a proxy for talking to a Go program.
  3. //
  4. // autogenerated by gobind -lang=java issue29559
  5. package issue29559;
  6. import go.Seq;
  7. public abstract class Issue29559 {
  8. static {
  9. Seq.touch(); // for loading the native library
  10. _init();
  11. }
  12. private Issue29559() {} // uninstantiable
  13. // touch is called from other bound packages to initialize this package
  14. public static void touch() {}
  15. private static native void _init();
  16. public static native void takesAString(String s);
  17. }