@@ -131,35 +131,35 @@ pub fn main() !void {
131
131
// ^^^^^^^^^^^^^^ (error{A,B}!error{B,A}!?S)()
132
132
133
133
const error_union_16 = if (runtime_bool ) error .A else s ;
134
- _ = error_union_16 ;
134
+ _ = error_union_16 catch {} ;
135
135
// ^^^^^^^^^^^^^^ (error{A}!S)()
136
136
137
137
const error_union_17 = if (runtime_bool ) s else error .A ;
138
- _ = error_union_17 ;
138
+ _ = error_union_17 catch {} ;
139
139
// ^^^^^^^^^^^^^^ (error{A}!S)()
140
140
141
141
const error_union_18 = if (runtime_bool ) error .A else @as (i32 , 0 );
142
- _ = error_union_18 ;
142
+ _ = error_union_18 catch {} ;
143
143
// ^^^^^^^^^^^^^^ (error{A}!i32)()
144
144
145
145
const error_union_19 = if (runtime_bool ) @as (i32 , 0 ) else error .A ;
146
- _ = error_union_19 ;
146
+ _ = error_union_19 catch {} ;
147
147
// ^^^^^^^^^^^^^^ (error{A}!i32)()
148
148
149
149
const error_union_20 = if (runtime_bool ) error .A else @as (error {B }! S , s );
150
- _ = error_union_20 ;
150
+ _ = error_union_20 catch {} ;
151
151
// ^^^^^^^^^^^^^^ (error{A,B}!S)()
152
152
153
153
const error_union_21 = if (runtime_bool ) @as (error {B }! S , s ) else error .A ;
154
- _ = error_union_21 ;
154
+ _ = error_union_21 catch {} ;
155
155
// ^^^^^^^^^^^^^^ (error{A,B}!S)()
156
156
157
157
const error_union_22 = if (runtime_bool ) error .A else @as (error {B }! i32 , 0 );
158
- _ = error_union_22 ;
158
+ _ = error_union_22 catch {} ;
159
159
// ^^^^^^^^^^^^^^ (error{A,B}!i32)()
160
160
161
161
const error_union_23 = if (runtime_bool ) @as (error {B }! i32 , 0 ) else error .A ;
162
- _ = error_union_23 ;
162
+ _ = error_union_23 catch {} ;
163
163
// ^^^^^^^^^^^^^^ (error{A,B}!i32)()
164
164
165
165
const noreturn_0 = if (runtime_bool ) s else return ;
0 commit comments