Skip to content

Commit fff3c25

Browse files
committed
tidy
1 parent 0f91ed4 commit fff3c25

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tools/compiletest/src/runtest.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,9 @@ impl<'test> TestCx<'test> {
14151415

14161416
fn check_no_compiler_crash(&self, proc_res: &ProcRes, should_ice: bool) {
14171417
match proc_res.status.code() {
1418-
Some(101) if !should_ice => self.fatal_proc_rec("compiler encountered internal error", proc_res),
1418+
Some(101) if !should_ice => {
1419+
self.fatal_proc_rec("compiler encountered internal error", proc_res)
1420+
}
14191421
None => self.fatal_proc_rec("compiler terminated by signal", proc_res),
14201422
_ => (),
14211423
}

0 commit comments

Comments
 (0)