Skip to content

Commit 5503190

Browse files
committed
Simplify mutability assert!s
1 parent f9a332a commit 5503190

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_hir_typeck/src/coercion.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ impl<'f, 'tcx> Coerce<'f, 'tcx> {
464464
// `self.x` both have `&mut `type would be a move of
465465
// `self.x`, but we auto-coerce it to `foo(&mut *self.x)`,
466466
// which is a borrow.
467-
assert_eq!(mutbl_b, hir::Mutability::Not); // can only coerce &T -> &U
467+
assert!(mutbl_b.is_not()); // can only coerce &T -> &U
468468
return success(vec![], ty, obligations);
469469
}
470470

compiler/rustc_hir_typeck/src/method/confirm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ impl<'a, 'tcx> ConfirmContext<'a, 'tcx> {
199199
Some(probe::AutorefOrPtrAdjustment::ToConstPtr) => {
200200
target = match target.kind() {
201201
&ty::RawPtr(ty::TypeAndMut { ty, mutbl }) => {
202-
assert_eq!(mutbl, hir::Mutability::Mut);
202+
assert!(mutbl.is_mut());
203203
self.tcx.mk_ptr(ty::TypeAndMut { mutbl: hir::Mutability::Not, ty })
204204
}
205205
other => panic!("Cannot adjust receiver type {:?} to const ptr", other),

0 commit comments

Comments
 (0)