URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [pr8415.java] - Rev 830
Go to most recent revision | Compare with Previous | Blame | View Log
import java.lang.reflect.*; public class pr8415 { public static void meth () throws NullPointerException { throw new NullPointerException(); } public static void main(String[] args) throws Throwable { Class k = pr8415.class; Method m = k.getMethod ("meth", new Class[0]); System.out.println(m); } }
Go to most recent revision | Compare with Previous | Blame | View Log