diff options
| author | Nicholas-Baron <nicholas.baron.ten@gmail.com> | 2020-09-19 00:50:54 -0700 |
|---|---|---|
| committer | Nicholas-Baron <nicholas.baron.ten@gmail.com> | 2020-09-20 18:48:31 -0700 |
| commit | bfe5bc9cb93445c7e2818db684de2bf1d84a06c7 (patch) | |
| tree | ea90febd288113aaa4f90510bafd4231af9919cc | |
| parent | 63dbfb3c30c96449eb1e0236b4f6fa5d60bdf609 (diff) | |
| download | rust-bfe5bc9cb93445c7e2818db684de2bf1d84a06c7.tar.gz rust-bfe5bc9cb93445c7e2818db684de2bf1d84a06c7.zip | |
Formatter moved one use statement
| -rw-r--r-- | compiler/rustc_typeck/src/check/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_typeck/src/check/util.rs b/compiler/rustc_typeck/src/check/util.rs index c215a9c2f90..973c9a2a26a 100644 --- a/compiler/rustc_typeck/src/check/util.rs +++ b/compiler/rustc_typeck/src/check/util.rs @@ -1,8 +1,8 @@ use rustc_hir::def_id::{CrateNum, LocalDefId, LOCAL_CRATE}; -use crate::TyCtxt; use super::wfcheck; use crate::check::CheckItemTypesVisitor; +use crate::TyCtxt; pub fn check_mod_item_types(tcx: TyCtxt<'_>, module_def_id: LocalDefId) { tcx.hir().visit_item_likes_in_module(module_def_id, &mut CheckItemTypesVisitor { tcx }); |
