Changeset d96f7c4 for tests/exceptions/try-ctrl-flow.cfa
- Timestamp:
- Jan 17, 2025, 3:46:34 PM (2 months ago)
- Branches:
- master
- Children:
- df56e25
- Parents:
- 3b340d68
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tests/exceptions/try-ctrl-flow.cfa ¶
r3b340d68 rd96f7c4 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.