2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.jni / cxxtest.java
blobb1c3bb945fa1285dcfbbe74f8f64647d89138938
1 // Test for array field lookup.
3 public class cxxtest
5 // A field for us to look up.
6 public Object[] F = new Object[7];
8 public native Object[] fetch ();
10 public void doit ()
12 System.out.println (F == fetch ());
15 public static void main (String[] args)
17 cxxtest q = new cxxtest ();
18 q.doit ();
21 static
23 System.loadLibrary ("cxxtest");