]> git.proxmox.com Git - rustc.git/blobdiff - src/librustc_mir/borrow_check/type_check/liveness/mod.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / librustc_mir / borrow_check / type_check / liveness / mod.rs
index cdf962ee31a6ee66bad985e34eb47bb913b539ab..13bdaa357ce41158d91d62f716f3cb888c5b8741 100644 (file)
@@ -1,11 +1,11 @@
-use rustc::mir::{Body, Local, ReadOnlyBodyAndCache};
-use rustc::ty::{RegionVid, TyCtxt};
 use rustc_data_structures::fx::FxHashSet;
+use rustc_middle::mir::{Body, Local, ReadOnlyBodyAndCache};
+use rustc_middle::ty::{RegionVid, TyCtxt};
 use std::rc::Rc;
 
-use crate::dataflow::generic::ResultsCursor;
 use crate::dataflow::move_paths::MoveData;
 use crate::dataflow::MaybeInitializedPlaces;
+use crate::dataflow::ResultsCursor;
 
 use crate::borrow_check::{
     constraints::OutlivesConstraintSet,