Differences From Artifact [2d61a6f1fd]:
- File example.c — part of check-in [d6132d89e1] at 2017-01-22 15:55:26 on branch trunk — Never issue a warning if the exception is unused (user: js, size: 1693) [annotate] [blame] [check-ins using]
To Artifact [288ea4fa49]:
- File example.c — part of check-in [0a653c9820] at 2017-01-22 15:55:48 on branch trunk — Demonstrate rethrow in the example (user: js, size: 1748) [annotate] [blame] [check-ins using]
︙ | |||
35 36 37 38 39 40 41 42 43 44 | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | + + + + + + - + | puts("try1"); try { puts("try2"); } catch (ex) { puts("this should not be called"); } try { throw(7); } catch (ex) { rethrow; } throw(5); } catch (ex) { |
︙ |