URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [Final.java] - Rev 781
Go to most recent revision | Compare with Previous | Blame | View Log
public final class Final { public static void main(String args[]) { Final f = null; try { f.doSomething(); } catch (NullPointerException x) { System.out.println("NullPointerException - ok"); } } void doSomething() { System.out.println("This should not happen"); } }
Go to most recent revision | Compare with Previous | Blame | View Log