Skip to content

Commit 2673ba9

Browse files
committed
Trailing return
1 parent b9f6b97 commit 2673ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/eval.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ pub fn eval_main<'tcx>(tcx: TyCtxt<'tcx>, main_id: DefId, config: MiriConfig) ->
204204
return None;
205205
}
206206
}
207-
return Some(return_code);
207+
Some(return_code)
208208
}
209209
Err(e) => report_err(&ecx, e),
210210
}

0 commit comments

Comments
 (0)