URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.jni/] [findclass2.java] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// Test that FindClass initializes the class. public class findclass2 { public static class inner { static { System.out.println("hello"); } } public static native void searchClass(); static { System.loadLibrary("findclass2"); } public static void main(String[] args) { searchClass(); } }
Go to most recent revision | Compare with Previous | Blame | View Log