URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [pr13107_2.java] - Rev 830
Go to most recent revision | Compare with Previous | Blame | View Log
public class pr13107_2 { public static int foo (boolean b) { int i; try { if (b) return 1; i= 2; } finally { if (b) i = 3; } return i; } public static void main(String[] args) { } }
Go to most recent revision | Compare with Previous | Blame | View Log