summaryrefslogtreecommitdiff
path: root/src/tools/clippy/tests/ui-internal/unnecessary_def_path.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui-internal/unnecessary_def_path.fixed')
-rw-r--r--src/tools/clippy/tests/ui-internal/unnecessary_def_path.fixed4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/clippy/tests/ui-internal/unnecessary_def_path.fixed b/src/tools/clippy/tests/ui-internal/unnecessary_def_path.fixed
index 3908411da82..0a994842834 100644
--- a/src/tools/clippy/tests/ui-internal/unnecessary_def_path.fixed
+++ b/src/tools/clippy/tests/ui-internal/unnecessary_def_path.fixed
@@ -13,7 +13,7 @@ extern crate rustc_span;
use clippy_utils::ty::{is_type_diagnostic_item, is_type_lang_item, match_type};
#[allow(unused)]
use clippy_utils::{
- is_expr_path_def_path, is_path_diagnostic_item, is_res_diagnostic_ctor, is_res_lang_ctor, is_trait_method,
+ is_enum_variant_ctor, is_expr_path_def_path, is_path_diagnostic_item, is_res_lang_ctor, is_trait_method,
match_def_path, match_trait_method, path_res,
};
@@ -22,8 +22,8 @@ use rustc_hir::LangItem;
#[allow(unused)]
use rustc_span::sym;
-use rustc_hir::def_id::DefId;
use rustc_hir::Expr;
+use rustc_hir::def_id::DefId;
use rustc_lint::LateContext;
use rustc_middle::ty::Ty;