Changeset 8e90fd6 for tests/exceptions/try-ctrl-flow.cfa
- Timestamp:
- Jan 18, 2025, 3:46:06 PM (9 months ago)
- Branches:
- master
- Children:
- d0b6712
- Parents:
- fa59c40 (diff), df56e25 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/exceptions/try-ctrl-flow.cfa
rfa59c40 r8e90fd6 81 81 } 82 82 83 void choose_fallthr u_in_finally() {83 void choose_fallthrough_in_finally() { 84 84 choose (1) { 85 85 case 1: 86 86 try {} finally { 87 fallthr u;87 fallthrough; 88 88 } 89 89 default: … … 105 105 } 106 106 107 void labelled_choose_fallthr u_in_finally() {107 void labelled_choose_fallthrough_in_finally() { 108 108 mainBlock: choose (1) { 109 109 case 1: 110 110 try {} finally { 111 fallthr umainBlock;111 fallthrough mainBlock; 112 112 } 113 113 case 2: … … 118 118 } 119 119 120 void choose_fallthr u_default_in_finally() {120 void choose_fallthrough_default_in_finally() { 121 121 choose (1) { 122 122 case 1: 123 123 try {} finally { 124 fallthr udefault;124 fallthrough default; 125 125 } 126 126 default:
Note:
See TracChangeset
for help on using the changeset viewer.