- File:
-
- 1 edited
-
tests/exceptions/try-ctrl-flow.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/exceptions/try-ctrl-flow.cfa
rd96f7c4 rd3cf623 81 81 } 82 82 83 void choose_fallthr ough_in_finally() {83 void choose_fallthru_in_finally() { 84 84 choose (1) { 85 85 case 1: 86 86 try {} finally { 87 fallthr ough;87 fallthru; 88 88 } 89 89 default: … … 105 105 } 106 106 107 void labelled_choose_fallthr ough_in_finally() {107 void labelled_choose_fallthru_in_finally() { 108 108 mainBlock: choose (1) { 109 109 case 1: 110 110 try {} finally { 111 fallthr oughmainBlock;111 fallthru mainBlock; 112 112 } 113 113 case 2: … … 118 118 } 119 119 120 void choose_fallthr ough_default_in_finally() {120 void choose_fallthru_default_in_finally() { 121 121 choose (1) { 122 122 case 1: 123 123 try {} finally { 124 fallthr oughdefault;124 fallthru default; 125 125 } 126 126 default:
Note:
See TracChangeset
for help on using the changeset viewer.