Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / testsuite / libjava.jni / simple_int.java
blob6306c4e9335ae27be3e70166dca3e997e7eedb54
1 // Test a simple static function with an `int' argument.
3 public class simple_int
5 public static native int nat (int z);
7 static
9 System.loadLibrary ("simple_int");
12 public static void main (String[] args)
14 System.out.println (nat (23));