URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [pr184.java] - Rev 781
Go to most recent revision | Compare with Previous | Blame | View Log
public class pr184 { public static void main(String[] args) { pr184 n = null; try { n.foo(); } catch (NullPointerException x) { System.out.println(x); } } int x = 2; final int foo() { return x; }; }
Go to most recent revision | Compare with Previous | Blame | View Log