2007-02-13 Andrew Haley <aph@redhat.com>
[gcc.git] / libjava / testsuite / libjava.jni / invoke.java
1 // Test to make sure the minimal invocation works.
2
3 public class invoke
4 {
5 public static native int val ();
6
7 static
8 {
9 System.out.println ("trying...");
10 System.loadLibrary ("invoke");
11 System.out.println ("loaded");
12 }
13
14 public static void main (String[] args)
15 {
16 System.out.println (val ());
17 }
18 }