URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [pr13107.java] - Rev 772
Go to most recent revision | Compare with Previous | Blame | View Log
class pr13107 { public static void main(String[] args) { for (int i = 0; i < 1; i++) { String s = "A"; if (s == "A") continue; try{ try{ System.out.println(s); } finally{ if (s != "A") throw new Error(); } } catch(Exception e){ s = "B"; } } } }
Go to most recent revision | Compare with Previous | Blame | View Log