fork(3) download
  1. class Ideone
  2. {
  3. public static int num() {
  4. try {
  5. throw new RuntimeException();
  6. } finally {
  7. return 42;
  8. }
  9. }
  10. public static void main (String[] args)
  11. {
  12. try {
  13. System.out.println(num());
  14. } catch (Exception ex) {
  15. System.out.println(ex);
  16. }
  17. }
  18. }
Success #stdin #stdout 0.09s 320320KB
stdin
Standard input is empty
stdout
42