Skip to content

Commit 8ef1d08

Browse files
committed
tidy
1 parent ec3bf38 commit 8ef1d08

File tree

1 file changed

+7
-7
lines changed
  • compiler/rustc_mir_build/src/build/matches

1 file changed

+7
-7
lines changed

compiler/rustc_mir_build/src/build/matches/mod.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@
55
//! This also includes code for pattern bindings in `let` statements and
66
//! function parameters.
77
8-
use crate::build::expr::as_place::PlaceBuilder;
9-
use crate::build::scope::DropKind;
10-
use crate::build::ForGuard::{self, OutsideGuard, RefWithinGuard};
11-
use crate::build::{
12-
coverageinfo, BlockAnd, BlockAndExtension, Builder, GuardFrame, GuardFrameLocal, LocalsForNode,
13-
};
14-
158
use rustc_data_structures::fx::FxIndexMap;
169
use rustc_data_structures::stack::ensure_sufficient_stack;
1710
use rustc_hir::{BindingMode, ByRef};
@@ -25,6 +18,13 @@ use rustc_span::{BytePos, Pos, Span};
2518
use rustc_target::abi::VariantIdx;
2619
use tracing::{debug, instrument};
2720

21+
use crate::build::ForGuard::{self, OutsideGuard, RefWithinGuard};
22+
use crate::build::expr::as_place::PlaceBuilder;
23+
use crate::build::scope::DropKind;
24+
use crate::build::{
25+
BlockAnd, BlockAndExtension, Builder, GuardFrame, GuardFrameLocal, LocalsForNode, coverageinfo,
26+
};
27+
2828
// helper functions, broken out by category:
2929
mod match_pair;
3030
mod simplify;

0 commit comments

Comments
 (0)