We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4dbd94 + 0bb8891 commit e0de3e6Copy full SHA for e0de3e6
src/eval.rs
@@ -458,14 +458,7 @@ pub fn eval_entry<'tcx>(
458
panic::resume_unwind(panic_payload)
459
});
460
// `Ok` can never happen.
461
- #[cfg(not(bootstrap))]
462
let Err(res) = res;
463
- #[cfg(bootstrap)]
464
- let res = match res {
465
- Err(res) => res,
466
- // `Ok` can never happen
467
- Ok(never) => match never {},
468
- };
469
470
// Machine cleanup. Only do this if all threads have terminated; threads that are still running
471
// might cause Stacked Borrows errors (https://github.com/rust-lang/miri/issues/2396).
0 commit comments