We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 413a129 commit a75c792Copy full SHA for a75c792
src/librustc_mir/transform/check_consts/validation.rs
@@ -28,7 +28,7 @@ use crate::dataflow::{self, Analysis};
28
// We are using `MaybeMutBorrowedLocals` as a proxy for whether an item may have been mutated
29
// through a pointer prior to the given point. This is okay even though `MaybeMutBorrowedLocals`
30
// kills locals upon `StorageDead` because a local will never be used after a `StorageDead`.
31
-pub type IndirectlyMutableResults<'mir, 'tcx> =
+type IndirectlyMutableResults<'mir, 'tcx> =
32
dataflow::ResultsCursor<'mir, 'tcx, MaybeMutBorrowedLocals<'mir, 'tcx>>;
33
34
struct QualifCursor<'a, 'mir, 'tcx, Q: Qualif> {
0 commit comments