2007-02-13 Andrew Haley <aph@redhat.com>
[gcc.git] / libjava / testsuite / libjava.jni / findclass2.java
1 // Test that FindClass initializes the class.
2
3 public class findclass2
4 {
5 public static class inner
6 {
7 static
8 {
9 System.out.println("hello");
10 }
11 }
12
13 public static native void searchClass();
14
15 static
16 {
17 System.loadLibrary("findclass2");
18 }
19
20 public static void main(String[] args)
21 {
22 searchClass();
23 }
24 }