rustfmt explain_borrow/mod

This commit is contained in:
Santiago Pastorino 2018-04-09 16:34:05 -03:00
parent 2e87dbbde1
commit 2c79f6458e
No known key found for this signature in database
GPG Key ID: 88C941CDA1D46432
1 changed files with 2 additions and 2 deletions

View File

@ -8,11 +8,11 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use borrow_check::{Context, MirBorrowckCtxt};
use borrow_check::nll::region_infer::{Cause, RegionInferenceContext};
use borrow_check::{Context, MirBorrowckCtxt};
use dataflow::BorrowData;
use rustc::mir::{Local, Location, Mir};
use rustc::mir::visit::{MirVisitable, PlaceContext, Visitor};
use rustc::mir::{Local, Location, Mir};
use rustc_data_structures::fx::FxHashSet;
use rustc_errors::DiagnosticBuilder;
use util::liveness::{self, DefUse, LivenessMode};