We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f4b38c + 3f7e506 commit 288ab16Copy full SHA for 288ab16
compiler/rustc_mir_transform/src/deduce_param_attrs.rs
@@ -44,6 +44,7 @@ impl<'tcx> Visitor<'tcx> for DeduceReadOnly {
44
// Whether mutating though a `&raw const` is allowed is still undecided, so we
45
// disable any sketchy `readonly` optimizations for now.
46
// But we only need to do this if the pointer would point into the argument.
47
+ // IOW: for indirect places, like `&raw (*local).field`, this surely cannot mutate `local`.
48
!place.is_indirect()
49
}
50
PlaceContext::NonMutatingUse(..) | PlaceContext::NonUse(..) => {
0 commit comments