We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18daa76 commit b9d4c75Copy full SHA for b9d4c75
src/librustc/mir/interpret/error.rs
@@ -348,8 +348,6 @@ pub enum UndefinedBehaviorInfo {
348
UbExperimental(String),
349
/// Unreachable code was executed.
350
Unreachable,
351
- /// An `assume` was run on a `false` condition,
352
- AssumptionNotHeld,
353
}
354
355
impl fmt::Debug for UndefinedBehaviorInfo {
@@ -360,8 +358,6 @@ impl fmt::Debug for UndefinedBehaviorInfo {
360
358
write!(f, "{}", msg),
361
359
Unreachable =>
362
write!(f, "entered unreachable code"),
363
- AssumptionNotHeld =>
364
- write!(f, "`assume` argument was false"),
365
366
367
0 commit comments