@@ -304,7 +304,7 @@ impl fmt::Debug for InvalidProgramInfo<'_> {
304
304
}
305
305
306
306
/// Error information for when the program caused Undefined Behavior.
307
- pub enum UndefinedBehaviorInfo < ' tcx > {
307
+ pub enum UndefinedBehaviorInfo {
308
308
/// Free-form case. Only for errors that are never caught!
309
309
Ub ( String ) ,
310
310
/// Free-form case for experimental UB. Only for errors that are never caught!
@@ -322,10 +322,10 @@ pub enum UndefinedBehaviorInfo<'tcx> {
322
322
/// Overflowing inbounds pointer arithmetic.
323
323
PointerArithOverflow ,
324
324
/// Invalid metadata in a wide pointer (using `str` to avoid allocations).
325
- InvalidMeta ( & ' tcx str ) ,
325
+ InvalidMeta ( & ' static str ) ,
326
326
}
327
327
328
- impl fmt:: Debug for UndefinedBehaviorInfo < ' _ > {
328
+ impl fmt:: Debug for UndefinedBehaviorInfo {
329
329
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
330
330
use UndefinedBehaviorInfo :: * ;
331
331
match self {
@@ -358,7 +358,7 @@ pub enum UnsupportedOpInfo<'tcx> {
358
358
359
359
/// When const-prop encounters a situation it does not support, it raises this error.
360
360
/// This must not allocate for performance reasons (hence `str`, not `String`).
361
- ConstPropUnsupported ( & ' tcx str ) ,
361
+ ConstPropUnsupported ( & ' static str ) ,
362
362
363
363
// -- Everything below is not categorized yet --
364
364
FunctionAbiMismatch ( Abi , Abi ) ,
@@ -580,7 +580,7 @@ impl fmt::Debug for ResourceExhaustionInfo {
580
580
581
581
pub enum InterpError < ' tcx > {
582
582
/// The program caused undefined behavior.
583
- UndefinedBehavior ( UndefinedBehaviorInfo < ' tcx > ) ,
583
+ UndefinedBehavior ( UndefinedBehaviorInfo ) ,
584
584
/// The program did something the interpreter does not support (some of these *might* be UB
585
585
/// but the interpreter is not sure).
586
586
Unsupported ( UnsupportedOpInfo < ' tcx > ) ,
0 commit comments