diff options
| -rw-r--r-- | compiler/rustc_mir/src/interpret/eval_context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir/src/interpret/eval_context.rs b/compiler/rustc_mir/src/interpret/eval_context.rs index b683aca9f05..f1ba669492f 100644 --- a/compiler/rustc_mir/src/interpret/eval_context.rs +++ b/compiler/rustc_mir/src/interpret/eval_context.rs @@ -825,7 +825,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> { StackPopUnwind::Cleanup(unwind) => Some(unwind), StackPopUnwind::Skip => None, StackPopUnwind::NotAllowed => { - throw_ub_format!("unwind past a frame that does not allow unwinding") + throw_ub_format!("unwinding past a frame that does not allow unwinding") } }), ), |
