From bc9582a9534f8d352581617780abe247aaddc2ae Mon Sep 17 00:00:00 2001 From: Mark Mansi Date: Mon, 9 Dec 2019 12:24:47 -0600 Subject: [PATCH] fix imports after rebase --- src/librustc_mir/borrow_check/nll.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/librustc_mir/borrow_check/nll.rs b/src/librustc_mir/borrow_check/nll.rs index 61e6b4c8631..6d28a8caa92 100644 --- a/src/librustc_mir/borrow_check/nll.rs +++ b/src/librustc_mir/borrow_check/nll.rs @@ -22,15 +22,14 @@ use polonius_engine::{Algorithm, Output}; use crate::util as mir_util; use crate::util::pretty; -use crate::dataflow::indexes::BorrowIndex; -use crate::dataflow::move_paths::{InitLocation, MoveData, MovePathIndex, InitKind}; +use crate::dataflow::move_paths::{InitLocation, MoveData, InitKind}; use crate::dataflow::FlowAtLocation; use crate::dataflow::MaybeInitializedPlaces; use crate::transform::MirSource; use crate::borrow_check::{ borrow_set::BorrowSet, - location::{LocationIndex, LocationTable}, + location::LocationTable, facts::{AllFacts, AllFactsExt, RustcFacts}, region_infer::{RegionInferenceContext, values::RegionValueElements}, universal_regions::UniversalRegions,