Skip to content

Commit a59d071

Browse files
authored
Fix for_loops_over_fallibles hits in compiletest/src/json.rs
1 parent 376a8c0 commit a59d071

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/compiletest/src/json.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ fn push_expected_errors(
282282

283283
// Add notes for the backtrace
284284
for span in primary_spans {
285-
for frame in &span.expansion {
285+
if let Some(frame) = &span.expansion {
286286
push_backtrace(expected_errors, frame, file_name);
287287
}
288288
}
@@ -315,7 +315,7 @@ fn push_backtrace(
315315
});
316316
}
317317

318-
for previous_expansion in &expansion.span.expansion {
318+
if let Some(previous_expansion) = &expansion.span.expansion {
319319
push_backtrace(expected_errors, previous_expansion, file_name);
320320
}
321321
}

0 commit comments

Comments
 (0)